From 451c1af1058d06bd98f0c78eb25a9329b4f73e4f Mon Sep 17 00:00:00 2001 From: development Date: Fri, 19 Dec 2025 22:51:35 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a30379b..d01112d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,12 @@ import type { Metadata } from "next"; -import { Poppins } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const poppins = Poppins({ - variable: "--font-poppins", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { @@ -49,7 +48,7 @@ export default function RootLayout({ {children}