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} +