From ae319c554404d3205462dc1d99672d6ce9e620aa Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 16 Apr 2026 21:18:31 +0000 Subject: [PATCH 1/3] 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 c6d3237..3d0b5f6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -28,14 +28,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, @@ -45,7 +46,7 @@ export default function RootLayout({ return ( - + {children}