From 1977c806c856c9a0072368b1c343a91e3f10286a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:05:50 +0000 Subject: [PATCH 1/4] 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 bc0bbd3..4db28b1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,10 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; import "./globals.css"; +import { Poppins } from "next/font/google"; -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 = { @@ -17,7 +18,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}