diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..e7a2f63 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1386 @@ +import type { Metadata } from 'next'; +import './globals.css'; + +export const metadata: Metadata = { + title: 'Eats Bakery & Coffee', + description: 'Handcrafted bakery and coffee experience in Raleigh, NC', +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + +
{children} +