22 lines
660 B
TypeScript
22 lines
660 B
TypeScript
import type { Metadata } from 'next';
|
|
import './globals.css';
|
|
import Navbar from './components/Navbar';
|
|
import Footer from './components/Footer';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Owl Stream | Cape Coral Friends of Wildlife',
|
|
description: 'Live burrowing owl cams, wildlife conservation, and nature in Cape Coral, Florida.',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="bg-deepGreen text-stone-100 min-h-screen flex flex-col">
|
|
<Navbar />
|
|
<main className="flex-1">{children}</main>
|
|
<Footer />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|