From 679d0674eac73d0115b2e6599b41b2d22170c3a8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 16:46:33 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 14f648f..085105a 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 { Raleway } from "next/font/google"; import { Open_Sans } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; @@ -23,13 +24,11 @@ export const metadata: Metadata = { }; -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); -const openSans = Open_Sans({ - variable: "--font-open-sans", + +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -40,7 +39,7 @@ export default function RootLayout({ return ( - + {children}