From ea4f3a864ca92a69a4d7df213fab55fb90121239 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 23:14:57 +0000 Subject: [PATCH] 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 b79383d..df75e78 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -24,10 +24,14 @@ export const metadata: Metadata = { -const roboto = Roboto({ - variable: "--font-roboto", + +const montserrat = Montserrat({ + variable: "--font-montserrat", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -38,7 +42,7 @@ export default function RootLayout({ return ( - + {children}