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}