From 7c94d9b900a7d4f5fd8e3d5abcb033048b9b1e39 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 16 Apr 2026 19:29:03 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 928efd7..87507a0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -24,14 +24,15 @@ export const metadata: Metadata = { -const dmSans = DM_Sans({ - variable: "--font-dm-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, @@ -41,7 +42,7 @@ export default function RootLayout({ return ( - + {children}