From 7f892b72c2856296ab0e5b389276c60a5c310b7a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 19:21:22 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b620c25..d50eb11 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 { Nunito } from "next/font/google"; +import { Raleway } from "next/font/google"; @@ -20,8 +21,9 @@ export const metadata: Metadata = { }, }; -const nunito = Nunito({ - variable: "--font-nunito", + +const raleway = Raleway({ + variable: "--font-raleway", subsets: ["latin"], }); @@ -33,7 +35,7 @@ export default function RootLayout({ return ( - + {children}