From 382ea211fab6675755b3a56276a5f45e79ca20cf Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 11 May 2026 08:10:33 +0000 Subject: [PATCH 1/4] Update theme fonts --- src/app/layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e6cf154..db699de 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -22,6 +22,7 @@ export const metadata: Metadata = { }; + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], -- 2.49.1 From cf591dc064e6554e08e52f1d849935e66aef8946 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 11 May 2026 08:10:34 +0000 Subject: [PATCH 2/4] Update theme fonts -- 2.49.1 From 4749f0f9d2c7cc28d7fa55cee4a2372257fdc041 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 11 May 2026 08:10:37 +0000 Subject: [PATCH 3/4] Update theme fonts --- src/app/layout.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index db699de..5fc4fd7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Montserrat } from "next/font/google"; import { Open_Sans } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -23,12 +24,13 @@ export const metadata: Metadata = { -const inter = Inter({ - variable: "--font-inter", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -40,7 +42,7 @@ export default function RootLayout({ return ( - + {children}