From b2537031b3683fbfdb14e5a842ee2ac353d13d45 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 08:57:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c619990..7c5e438 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Café Coffee Day - Premium Specialty Coffee", description: "Experience the finest specialty coffee crafted by passionate baristas. Award-winning café with premium seating and exceptional service."}; + title: "Café Coffee Day - Premium Specialty Coffee", description: "Experience the finest specialty coffee crafted by passionate baristas at Café Coffee Day. Award-winning café on Race Course Road."}; export default function RootLayout({ children, @@ -14,7 +20,7 @@ export default function RootLayout({ }) { return ( - + {children}