import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "Cape Coral Burrowing Owl Livestream", description: "Live stream of burrowing owls in Cape Coral", }; export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }