import React from 'react'; import Link from 'next/link'; import { Eye, Mail, Users, Heart, ExternalLink } from 'lucide-react'; import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'About CCFW', description: 'Learn about Cape Coral Friends of Wildlife and our mission to protect Florida wildlife.', }; export default function AboutPage() { return (
{/* Mission */}
About CCFW

Cape Coral Friends of Wildlife

Cape Coral Friends of Wildlife (CCFW) is a nonprofit organization dedicated to protecting, monitoring, and advocating for native wildlife in Cape Coral and Southwest Florida.

Founded by passionate local residents, we've grown into a community of hundreds of volunteers who monitor owl burrows, restore habitat, educate the public, and run the wildlife cameras you're watching right now.

Visit Main Website Support Us
{[ { icon: Users, value: '500+', label: 'Active Volunteers' }, { icon: Eye, value: '2,000+', label: 'Burrows Monitored' }, { icon: Heart, value: '25+', label: 'Years of Conservation' }, ].map(({ icon: Icon, value, label }) => (
{value}
{label}
))}
{/* Mission panels */}
{[ { title: 'Monitor', desc: 'Our volunteers walk hundreds of miles each year counting and mapping active burrowing owl burrows across Cape Coral.', }, { title: 'Educate', desc: 'We visit schools, community events, and host public walks to help residents understand and appreciate their wild neighbors.', }, { title: 'Protect', desc: 'We advocate for wildlife-friendly development policies, acquire land for habitat, and work with the city on conservation ordinances.', }, ].map(({ title, desc }) => (

{title}

{desc}

))}
{/* Contact */}

Get in Touch

Email

info@ccfriendsofwildlife.org

Whether you want to volunteer, report an injured owl, ask about conservation programs, or partner with us — we'd love to hear from you.

); }