From f69974b6d9113635a36f62274788c35679b389de Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 23:02: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 0b6ef65..af5894d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,6 +11,7 @@ import { DM_Sans } from "next/font/google"; import { Manrope } from "next/font/google"; import { Public_Sans } from "next/font/google"; import { Libre_Baskerville } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; @@ -23,14 +24,11 @@ export const metadata: Metadata = { title: 'Elite Horizons | Bespoke Luxury Trav -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({ @@ -41,7 +39,7 @@ export default function RootLayout({ return ( - + {children}