From 275e6fd3347adfa8e4a283e8cc8145a3132586e2 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 16:11:50 +0000 Subject: [PATCH 1/3] 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 099f06d..ec1d409 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,18 @@ 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: 'OnVio Studios | Automatización con IA para Inmobiliarias', description: 'Potenciamos tu inmobiliaria con IA. Desde la captación de leads hasta el agendamiento automático de ventas. Optimiza tu negocio con OnVio Studios.' }; +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<{ @@ -28,9 +26,7 @@ export default function RootLayout({ return ( - + {children}