From 39b96b29c75bc7e638680b679ff7eef24c82d74a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 22:39:19 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e46260c..669ee56 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,13 @@ import type { Metadata } from "next"; -import localFont from "next/font/local"; +import { Inter } from "next/font/google"; import "./globals.css"; +import "./styles/variables.css"; +import "./styles/base.css"; -const geistSans = localFont({ - src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"}); -const geistMono = localFont({ - src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "kyFaLL - Dé Loungebar van Veenendaal", description: "Premium loungebar in het hartje centrum van Veenendaal. Goede vibe, top shisha, eerlijke prijzen. Geopend tot 02:00 uur."}; + title: "kyFaLL - Dé Loungebar van Veenendaal", description: "Premium loungebar in Veenendaal met kwaliteit shisha, vriendelijke bediening en eerlijke prijzen."}; export default function RootLayout({ children, @@ -17,9 +16,7 @@ export default function RootLayout({ }) { return ( - - {children} - + {children}