From 02e6d68d426a54b31570d7afd28393ddd891e046 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 2 Jan 2026 22:18:05 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 +}