From 05a8697997a4b6c23f5fa1a43ee2631f494f775a Mon Sep 17 00:00:00 2001 From: development Date: Sun, 28 Dec 2025 02:39:55 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a818626..a0610a3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,13 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; +import { IBM_Plex_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", +const ibmPlexSans = IBM_Plex_Sans({ + variable: "--font-ibm-plex-sans", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], + weight: ["100", "200", "300", "400", "500", "600", "700"], }); export const metadata: Metadata = { @@ -47,7 +47,7 @@ export default function RootLayout({ {children} @@ -1273,4 +1273,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}