From eb7d60595a1c1554b94d6cd68657ff57480f79ee Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 1 Jun 2026 12:35:08 +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 3480cfe..1f464ba 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -17,10 +17,14 @@ export const metadata: Metadata = { }; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -31,7 +35,7 @@ export default function RootLayout({ return ( - + {children}