From 341399df644c18ae67f4150fe6c66f5956e3f270 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 15:20:29 +0000 Subject: [PATCH 1/4] Update theme fonts --- src/app/layout.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ec2b5f7..cd06e48 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,7 @@ import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Figtree } from "next/font/google"; import { Inter_Tight } from "next/font/google"; +import { Open_Sans } from "next/font/google"; @@ -23,10 +24,14 @@ export const metadata: Metadata = { }; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -37,7 +42,7 @@ export default function RootLayout({ return ( - + {children}