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