From 28bcca26940040822d875bc5ece4a359c2cb5748 Mon Sep 17 00:00:00 2001 From: development Date: Sat, 27 Dec 2025 04:54:15 +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 d1ea013..36665dd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; -import { Fraunces } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const fraunces = Fraunces({ - variable: "--font-fraunces", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -46,7 +46,7 @@ export default function RootLayout({ {children}