From 90af74ee47c49065ec6c8f3271df45087484fec5 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 18:11:35 +0000 Subject: [PATCH] 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 2a1f081..cea292c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -29,14 +29,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, @@ -46,7 +47,7 @@ export default function RootLayout({ return ( - + {children}