From 5b2e31ab775931400335eb03d156e44cf66e0d08 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 23:25:42 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ec8cbfb..b1b72c6 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 { Raleway } from "next/font/google"; +import { Open_Sans } from "next/font/google"; @@ -20,8 +21,13 @@ export const metadata: Metadata = { }, }; -const raleway = Raleway({ - variable: "--font-raleway", + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", subsets: ["latin"], }); @@ -33,7 +39,7 @@ export default function RootLayout({ return ( - + {children}