From 763d9eb5fac4c3f637762ecd4e4ced0cd9fbb815 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 17:51:18 +0000 Subject: [PATCH 1/3] 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 0d0cab8..c563bc5 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 { Public_Sans } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; @@ -20,9 +21,11 @@ export const metadata: Metadata = { }, }; -const publicSans = Public_Sans({ - variable: "--font-public-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({ @@ -33,7 +36,7 @@ export default function RootLayout({ return ( - + {children}