From 2b43ff26b6582f3a8ae6b326b8dacd862a882543 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 16:54:41 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 41 +++++++++++------------------------------ 1 file changed, 11 insertions(+), 30 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 00abb6e..9896694 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,16 +1,17 @@ import type { Metadata } from "next"; -import localFont from "next/font/local"; -import "./styles/variables.css"; -import "./styles/base.css"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./globals.css"; -const geistSans = localFont({ - src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"}); +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); -const geistMono = localFont({ - src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"}); +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Sunbeams", description: "Welcoming café with exceptional coffee and warm hospitality"}; + title: "Our Café", description: "Experience our welcoming café with exceptional coffee, homemade pastries, and warm hospitality."}; export default function RootLayout({ children, @@ -18,28 +19,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - -