From e151ce0e7e7dc737c66425d9ecdc1bb8c3221ff4 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 18:27:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1386 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1386 insertions(+) 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} +