From 5842fe4a464f21a884ee742c171667ab75d83d7a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 13 Apr 2026 12:04:00 +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 726122a..f75fbf7 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 { Manrope } from "next/font/google"; +import { Raleway } from "next/font/google"; @@ -21,7 +22,11 @@ export const metadata: Metadata = { }, }; -const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"] }); + +const raleway = Raleway({ + variable: "--font-raleway", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -31,7 +36,7 @@ export default function RootLayout({ return ( - + {children}