owl-stream/app/layout.tsx
2024-10-26 20:00:25 -04:00

20 lines
380 B
TypeScript

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 (
<html lang="en">
<body>{children}</body>
</html>
)
}