From e11de79b926c0b737716bc509d277cd0bfa4ef81 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 02:04:54 +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 9ba3b61..8fe6c94 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Mulish } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; @@ -17,13 +18,11 @@ export const metadata: Metadata = { -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); -const inter = Inter({ - variable: "--font-inter", + +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -34,7 +33,7 @@ export default function RootLayout({ return ( - + {children}