From cc3f1f13bac4d448fdcea42746099a458f2b836e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 22:15:48 +0000 Subject: [PATCH] Switch to version 2: modified src/app/layout.tsx --- src/app/layout.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6817972..92d884b 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 { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); export const metadata: Metadata = { title: "Create Next App", description: "Generated by create next app"}; @@ -14,7 +20,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +