import React from 'react'; import Link from 'next/link'; import { Card, CardContent, CardHeader, CardTitle, CardDescription, CardFooter } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; // This would typically come from an API or database const livestreams = [ { id: 1, name: "Cape Coral Burrowing Owl", location: "Cape Coral, FL", status: "Live", viewers: 128, description: "Watch these unique ground-dwelling owls at their burrows in Cape Coral. These protected birds are the official city bird of Cape Coral!" }, { id: 2, name: "Burrowing Owl Habitat", location: "Cape Coral, FL", status: "Live", viewers: 95, description: "Observe burrowing owls in their natural habitat. Watch them hunt, nest, and interact with their environment." }, { id: 3, name: "Owl Burrow Monitoring", location: "Cape Coral, FL", status: "Live", viewers: 67, description: "Monitor active burrowing owl burrows and learn about CCFW's conservation efforts to protect these amazing birds." }, ]; export default function Home() { return (
{/* Logo and Brand */}

CCFW Livestreams

Cape Coral Friends of Wildlife

{/* Navigation Actions */}
Join/Renew
Volunteer
{/* Hero Section */}
Live Wildlife Streams
Cape Coral Friends of Wildlife Livestreams Dedicated to Protection, Preservation and Education

Discover the fascinating world of burrowing owls, the official city bird of Cape Coral. These unique ground-dwelling owls are active during the day and nest underground in burrows throughout our community.

Cape Coral Friends of Wildlife is dedicated to protecting these threatened birds through habitat preservation, burrow maintenance, and community education. With over 2,500 burrows maintained by our volunteers, we ensure these amazing owls thrive in our urban environment.

Live 24/7
HD Quality
Cape Coral, FL
Learn more about CCFW
{/* Featured Owls Section */}

Featured Owls

Founded in 2001
500+ Members
{[ { name: 'Burrowing Owl Facts', icon: '🦉', color: 'from-ccfw-teal to-ccfw-maroon', description: "Burrowing owls are small, long-legged owls that nest underground in burrows. Unlike most owls, they are active during the day and have bright yellow eyes. The City of Cape Coral has designated the burrowing owl as its official city bird." }, { name: 'Owl Conservation', icon: '🌱', color: 'from-ccfw-maroon to-ccfw-teal', description: "CCFW volunteers maintain over 2,500 burrows throughout Cape Coral. These unique birds face threats from habitat loss and development. Our conservation efforts protect these amazing ground-dwelling owls." }, { name: 'Owl Habitat', icon: '🏞️', color: 'from-ccfw-gold to-ccfw-coral', description: "Burrowing owls prefer open areas with low vegetation such as prairies, grasslands, and open areas of urban development. They create burrows that provide shelter for many other wildlife species as well." } ].map((owlFeature) => (
{owlFeature.icon}
{owlFeature.name}

{owlFeature.description}

))}
{/* Live Cameras Section */}

Live Cameras

Powered by CCFW
{livestreams.map((stream) => ( {/* Status Indicator */}
{stream.status}
{/* Background Gradient Overlay */}
{/* Camera Preview Mockup */}
HD Live Stream
{/* Quality Badge */}
HD
{stream.name} {stream.location}

{stream.description}

{/* Viewer Count & Quality */}
{stream.status === 'Live' && (
{stream.viewers} viewers
)}
HD
{/* Watch Button */}
))}
{/* Support Our Mission Section */}
{/* Content Section */}

Support Our Mission

Cape Coral Friends of Wildlife is a volunteer organization founded in 2001. With over 500 members and an engaged group of volunteers, we work to preserve and enhance the habitats of protected wildlife.

Your support helps us continue our conservation efforts and educational programs that benefit the unique wildlife of Southwest Florida.

{/* Action Buttons */}
{/* Stats Card */}
{/* Background Glow */}
{/* Header */}
Impact This Year

Volunteer Hours

{/* Main Stat */}
836

And counting...

{/* CTA */}
{/* Modern Footer */}
); }