From cf24866b0825d75d201ba693abf61d6c37848eb3 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 20:56:08 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b487925..838b528 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Open_Sans } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -33,11 +34,14 @@ export const metadata: Metadata = { }, }; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], }); export default function RootLayout({ @@ -48,7 +52,7 @@ export default function RootLayout({ return ( - + {children}