From 5cc1549164367955de5bcb52e322e3d4fea01a45 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 21:28:06 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1ed25d3..66d3c99 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -19,7 +19,15 @@ export const metadata: Metadata = { }, }; -const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"] }); + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -29,7 +37,7 @@ export default function RootLayout({ return ( - + {children}