From ea83201e4ed5dcccb909e763786b24a6ec950ef6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 21:34:54 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3c12c92..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,11 @@ import type { Metadata } from "next"; -import "./styles/globals.css"; +import { Inter } from "next/font/google"; +import "./globals.css"; + +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Leonidas Groenplaats - Belgian Chocolate Café", description: "Luxury Belgian chocolate café in the heart of Antwerp. Handcrafted pralines, premium hot chocolate, and authentic hospitality since 1910."}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, @@ -11,10 +14,7 @@ export default function RootLayout({ }) { return ( - - - - {children} + {children}