From bbd7d5151f7e449497ef3fa9f4f5f22c4318b4ea Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 16 May 2026 05:12:27 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 474417f..63288cd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -25,7 +26,15 @@ export const metadata: Metadata = { }, }; -const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"] }); + +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -35,7 +44,7 @@ export default function RootLayout({ return ( - + {children}