From fba021c3d7408a3e924ac23855c4b483f579780f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:44:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c00743e..636e00d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,14 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import "./globals.css"; +import { Geist, Geist_Mono } from "next/font/google"; +import "@/styles/globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geist_mono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); export const metadata: Metadata = { title: "Baker Fırın & Kafe", description: "Fresh Bakery & Premium Coffee in Antalya"}; @@ -14,7 +20,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +