From 0536ff5cebc68c68cf7015e3cc408753290c16d1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:03:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1395 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1395 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..fd37939 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1395 @@ +import type { Metadata } from "next"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./globals.css"; + +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); + +export const metadata: Metadata = { + title: "Clique Club - Restaurant in Clarksburg, WV", description: "Family-owned lounge serving hearty meals, strong service, and unforgettable ribeye sandwiches in Clarksburg, WV."}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + + {children} + +