From a70adb0eb59618873c9cb6247144496cf80b17b8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 06:49:45 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 116dc8f..82fd524 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,9 @@ import type { Metadata } from "next"; -import { SF_Pro_Display } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -const sfProDisplay = SF_Pro_Display({ - variable: "--font-sf-pro-display", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); @@ -17,7 +17,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}