From 0ef480903492adaea105d1d5e250f241e0d94bd0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 30 May 2026 19:17:19 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 25358ae..3f8cd1e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,23 +6,21 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Inter_Tight } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); export const metadata: Metadata = { title: 'Barber Chop VIP: Elite Grooming & Styling', description: 'Indulge in the ultimate grooming experience at Barber Chop VIP. Discover sophisticated styles, premium services, and an exclusive atmosphere designed for the modern gentleman.', }; +const interTight = Inter_Tight({ + variable: "--font-inter-tight", + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -31,9 +29,7 @@ export default function RootLayout({ return ( - + {children}