From 43098b1fb4229909b37b18bf7492d6c562b295fc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 30 Apr 2026 15:35:57 +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 bf33173..46032e4 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 { Source_Sans_3 } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; @@ -26,9 +27,11 @@ export const metadata: Metadata = { -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", + +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -39,7 +42,7 @@ export default function RootLayout({ return ( - + {children}