From b6fe972693043e778aabb5c7e37284c3572073bd Mon Sep 17 00:00:00 2001 From: development Date: Sat, 27 Dec 2025 12:50:58 +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 82a5fe7..9fd320d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; -import { Noto_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const notoSans = Noto_Sans({ - variable: "--font-noto-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -38,7 +38,7 @@ export default function RootLayout({ {children}