From a9cb3c0dddc8e793f905029cd4ebcb0263169063 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 05:56:11 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 37e9025..829841e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Lato } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; @@ -14,9 +15,11 @@ export const metadata: Metadata = { description: 'Luxury-grade AI marketing systems built for premium brands. Lead generation, automation, branding, and conversion optimization.', }; -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], + +const interTight = Inter_Tight({ + variable: "--font-inter-tight", + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -27,7 +30,7 @@ export default function RootLayout({ return ( - + {children}