From 871c375703613bea0ed7e0d8775963289b0425a8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 10:17:21 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4ef72a9..2959035 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 { Mulish } from "next/font/google"; +import { Roboto } from "next/font/google"; @@ -21,13 +22,10 @@ export const metadata: Metadata = { }, }; -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + +const roboto = Roboto({ + variable: "--font-roboto", subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -38,7 +36,7 @@ export default function RootLayout({ return ( - + {children}