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}