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