From 77e0a58413263e5fc8ded3e9c9f4c6fc41490c22 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 07:41:47 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 36 ++++-------------------------------- 1 file changed, 4 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4acbe73..1683f21 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,19 +1,8 @@ import type { Metadata } from "next"; -import { Playfair_Display, Lato } from "next/font/google"; -import "./globals.css"; - -const playfairDisplay = Playfair_Display({ - variable: "--font-playfair-display", subsets: ["latin"], - weight: ["400", "500", "600", "700", "800", "900"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Mac's Route 8 Cafe | Retro Diner Experience", description: "Welcome to Mac's Route 8 Cafe - Where retro diner charm meets modern comfort. Enjoy classic breakfast favorites and warm hospitality."}; + title: "Mac's Route 8 Cafe", description: "Welcome to Mac's Route 8 Cafe - Where Retro Diner Charm Meets Modern Comfort. Serving up nostalgia and great food since day one."}; export default function RootLayout({ children, @@ -21,17 +10,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - - - {children} - - - + + {children}