From d7703fc3e0682129cadda561dfc745bf90108926 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 23:13:01 +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 e3f832e..a111c28 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,12 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { @@ -26,7 +27,7 @@ export default function RootLayout({ {children}