From 1444d8949320584138b56744229cfbfab9013062 Mon Sep 17 00:00:00 2001 From: development Date: Sat, 27 Dec 2025 15:43:44 +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 6f86cb3..9bcb120 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,13 @@ import type { Metadata } from "next"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", +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 = { @@ -49,7 +49,7 @@ export default function RootLayout({ {children}