From be47ad6a165b953a5e0e7cf22ad5e4dd03f8e887 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 11:52:25 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c5d1e5c..8522d5a 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 { Poppins } from "next/font/google"; +import { Open_Sans } from "next/font/google"; @@ -19,7 +20,15 @@ export const metadata: Metadata = { }, }; -const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -29,7 +38,7 @@ export default function RootLayout({ return ( - + {children}