diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7733315..38c3876 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; -import { Source_Serif_4 } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const sourceSerif4 = Source_Serif_4({ - variable: "--font-source-serif-4", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -49,7 +49,7 @@ export default function RootLayout({ {children} @@ -1275,4 +1275,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}