import React from 'react'; import { Lock, Users, ClipboardList } from 'lucide-react'; import Link from 'next/link'; import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'Volunteer', description: 'Join the CCFW volunteer team for owl surveys and habitat restoration.', }; export default function VolunteerPage() { return (
Volunteer Portal

Join the CCFW Team

Our volunteers are the backbone of everything we do. From burrow surveys to habitat restoration, there's a role for everyone.

{/* Login gate notice */}

Volunteer Dashboard

The full volunteer dashboard (task assignments, hour logging, equipment checkout, and leaderboard) requires a CCFW volunteer account. Log in or register to access.

Log In Request Access
{/* Volunteer roles */}

Volunteer Opportunities

{[ { icon: '🦉', title: 'Owl Surveyor', desc: 'Walk designated survey routes and record burrow activity on a monthly basis.', commitment: '2–4 hrs/month', }, { icon: '🌿', title: 'Habitat Restorer', desc: 'Plant native vegetation, remove invasives, and restore critical burrowing owl habitat.', commitment: '4 hrs/quarter', }, { icon: '📸', title: 'Camera Monitor', desc: 'Review footage from wildlife cameras, flag notable events, and maintain equipment.', commitment: 'Remote, flexible', }, ].map(({ icon, title, desc, commitment }) => (
{icon}

{title}

{desc}

{commitment}
))}
); }