From b3140ba237edffd9da87a0cf14004b3a73f1d7d0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 13:18:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1387 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1387 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..ed99fc1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1387 @@ +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "@/styles/globals.css"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "Burgers, Bait & Beer", description: "Waterfront burgers, cold beer, and good times at Embarcadero Marina Park South"}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} +