From c45d80b62e2ebb1137165657341cf91a45b9d272 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 00:29:12 +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 c65154b..24cc06e 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"; @@ -21,8 +22,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"], }); @@ -34,7 +40,7 @@ export default function RootLayout({ return ( - + {children}