From dc09ffd861f1fcbd5ee9f1cd139096307c298e1a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 13:56:46 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 79ca2e4..d55f9b1 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 { DM_Sans } from "next/font/google"; +import { Roboto } from "next/font/google"; @@ -20,9 +21,11 @@ export const metadata: Metadata = { }, }; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const roboto = Roboto({ + variable: "--font-roboto", subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -33,7 +36,7 @@ export default function RootLayout({ return ( - + {children}