diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1683f21..e6542d5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,15 @@ import type { Metadata } from "next"; -import "./styles/globals.css"; +import { Manrope } from "next/font/google"; +import "./globals.css"; + +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], + weight: ["200", "300", "400", "500", "600", "700", "800"], +}); export const metadata: Metadata = { - 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."}; + title: "Mac's Route 8 Cafe | Classic Diner Breakfast & Lunch", description: + "Mac's Route 8 Cafe: retro diner charm meets modern comfort. Breakfast favorites, lunch specials, and community connection. Open daily with a nostalgic twist."}; export default function RootLayout({ children, @@ -10,8 +17,17 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - {children} + + + + + {children} + + +