From ad12677932e7043e3d514ea8679203ddc5cffc84 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 23 May 2026 04:31:10 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 53c04a1..af3e5d8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -27,10 +27,14 @@ export const metadata: Metadata = { -const poppins = Poppins({ - variable: "--font-poppins", + +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -41,7 +45,7 @@ export default function RootLayout({ return ( - + {children}