From 9c64eb4b2c1fda6ea0aeb0243a6ccb8bf9b1f8d6 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 16:11:56 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ec1d409..65707d1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,15 +7,20 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Inter_Tight } from "next/font/google"; +import { DM_Sans } from "next/font/google"; 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", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -26,7 +31,7 @@ export default function RootLayout({ return ( - + {children}