7 Commits

Author SHA1 Message Date
32948f3bac Update src/app/page.tsx 2026-05-22 18:11:02 +00:00
001e3959d1 Update src/app/page.tsx 2026-05-22 18:10:27 +00:00
92e4c74ade Update theme fonts 2026-05-22 18:05:22 +00:00
e0787a5eff Update theme fonts 2026-05-22 18:05:22 +00:00
78838cf117 Update theme fonts 2026-05-22 18:05:17 +00:00
b63915e36e Update theme fonts 2026-05-22 18:05:17 +00:00
656e7c39a2 Update theme colors 2026-05-22 18:04:31 +00:00
4 changed files with 14 additions and 7 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Archivo } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -20,8 +21,14 @@ export const metadata: Metadata = {
},
};
const archivo = Archivo({
variable: "--font-archivo",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
@@ -33,7 +40,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -194,7 +194,7 @@ export default function LandingPage() {
tag="Ubícanos"
title="Visítanos en Monterrey"
description="Estamos en Hualahuises 6603, Hacienda de Santa Clara. ¡Te esperamos!"
imageSrc="http://img.b2bpic.net/free-photo/map-spain-seen-through-magnifying-glass_23-2147837126.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E5YWegwYm2GBXyF8qGtjaJbIZj/uploaded-1779473437431-os39d2kr.png"
mediaAnimation="blur-reveal"
buttonText="Abrir en Google Maps"
/>

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-archivo), sans-serif;
font-family: var(--font-open-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-archivo), sans-serif;
font-family: var(--font-inter), sans-serif;
}

View File

@@ -12,7 +12,7 @@
--background: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--foreground: #41a7bd;
--primary-cta: #1c1c1c;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;