From b60497b8fb2ffb4c86d74616f87b73aa769ce110 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:39:13 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3f11781..fd37151 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,15 @@ 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", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); @@ -34,7 +40,7 @@ export default function RootLayout({ {children}