From 9afced672a7e7d8b2dc7a59cba1f88a9bbd94ea1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 09:11:31 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a3f98e8..489ee5c 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 { Lato } from "next/font/google"; +import { Roboto } from "next/font/google"; @@ -19,10 +20,11 @@ export const metadata: Metadata = { }, }; -const lato = Lato({ - variable: "--font-lato", + +const roboto = Roboto({ + variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], + weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -33,7 +35,7 @@ export default function RootLayout({ return ( - + {children}