From 357477d3d2a0208177668e7bde24ea41a44160ba Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 07:19:24 +0000 Subject: [PATCH 1/4] Update theme fonts --- src/app/layout.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 174e48d..07f9c01 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 { Nunito } from "next/font/google"; @@ -21,10 +22,10 @@ export const metadata: Metadata = { }, }; -const lato = Lato({ - variable: "--font-lato", + +const nunito = Nunito({ + variable: "--font-nunito", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], }); export default function RootLayout({ @@ -35,7 +36,7 @@ export default function RootLayout({ return ( - + {children}