From 04d778c19155913754ff781591be0c26680c0f31 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 23:43:23 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1889f2c..2708632 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 { Mulish } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -14,7 +15,11 @@ export const metadata: Metadata = { description: 'Transform your bite, breathe better, and sleep deeper with specialized orofacial myofunctional therapy sessions and wellness courses by Olivia Lallouz.', }; -const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"] }); + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -24,7 +29,7 @@ export default function RootLayout({ return ( - + {children}