From 2cd9751ae6678e64b241077828b8428500553f16 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 30 Apr 2026 23:23:30 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c890664..5831d32 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -10,6 +10,7 @@ import { Source_Sans_3 } from "next/font/google"; import { Montserrat } from "next/font/google"; import { Open_Sans } from "next/font/google"; import { Libre_Baskerville } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; @@ -27,14 +28,11 @@ export const metadata: Metadata = { -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], -}); -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({ @@ -45,7 +43,7 @@ export default function RootLayout({ return ( - + {children}