From 2cc761fbd3e140c5ea30ebac6725feb9c68286d1 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 10 May 2026 21:19:38 +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 6ebca28..189213d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -22,14 +22,15 @@ export const metadata: Metadata = { }, }; -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -39,7 +40,7 @@ export default function RootLayout({ return ( - + {children}