From 6dcf44f6bd81a59a072b83440b4cf987ef6a7b6b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 13:08:19 +0000 Subject: [PATCH 1/3] Update theme fonts --- src/app/layout.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83dfa13..7c17ea6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,7 @@ import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Roboto } from "next/font/google"; @@ -19,13 +20,11 @@ export const metadata: Metadata = { }, }; -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); -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({ @@ -36,7 +35,7 @@ export default function RootLayout({ return ( - + {children}