From f41a0c63194ebdb36b8e137cbd687348bde9f524 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 15:11:03 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ce2b3e4..402b867 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 { Mulish } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; @@ -19,9 +20,11 @@ export const metadata: Metadata = { }, }; -const mulish = Mulish({ - variable: "--font-mulish", + +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -32,7 +35,7 @@ export default function RootLayout({ return ( - + {children}