diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6c6d768..408637e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,11 @@ import type { Metadata } from "next"; -import { SF_Pro_Display } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const sfProDisplay = SF_Pro_Display({ - variable: "--font-sf-pro-display", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -31,7 +30,7 @@ export default function RootLayout({ {children}