From 8a243bc1c410aac86cf24a2de9cdb24a5ac3e457 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 9 May 2026 02:20:24 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 77599e7..3bf8110 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 { Figtree } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -20,8 +21,13 @@ export const metadata: Metadata = { }; -const figtree = Figtree({ - variable: "--font-figtree", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -33,7 +39,7 @@ export default function RootLayout({ return ( - + {children}