import React from 'react'; import { Map } from 'lucide-react'; import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'Burrow Map', description: 'Interactive map of burrowing owl burrows in Cape Coral, Florida.', }; export default function MapPage() { return (
Burrow Map

Burrowing Owl Locations

An interactive map of active burrowing owl burrows monitored by CCFW volunteers across Cape Coral.

{/* Map placeholder — interactive Leaflet map requires client component */}
🗺️

Interactive Burrow Map

Leaflet map with burrow markers loading from{' '} /api/burrows

{/* Decorative grid pattern */}
{/* Legend */}
Active burrow
Inactive burrow
Camera location
); }