From 0e267437f3da80e41aee06325a0f63ca59e29840 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 17:46:58 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4c3e646..7ad3f8a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,16 +1,17 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; +import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], +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"], +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { @@ -41,7 +42,7 @@ export default function RootLayout({ {children}