From fefd28417a3b480b0affadb65864f5dcfe2a52ed Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 07:34:18 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a25862c..4b04e32 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 { Roboto } from "next/font/google"; +import { Nunito } from "next/font/google"; @@ -20,7 +21,11 @@ export const metadata: Metadata = { }, }; -const roboto = Roboto({ variable: "--font-roboto", subsets: ["latin"], weight: ["100", "300", "400", "500", "700", "900"] }); + +const nunito = Nunito({ + variable: "--font-nunito", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -30,7 +35,7 @@ export default function RootLayout({ return ( - + {children}