19 Commits

Author SHA1 Message Date
3ea88eac71 Update src/app/page.tsx 2026-05-22 18:22:41 +00:00
35d807d84f Merge version_3 into main
Merge version_3 into main
2026-05-22 18:19:35 +00:00
0d0d1bda22 Update src/app/page.tsx 2026-05-22 18:19:32 +00:00
3ebcc4f141 Merge version_3 into main
Merge version_3 into main
2026-05-22 18:15:21 +00:00
3753913f33 Update src/app/page.tsx 2026-05-22 18:15:17 +00:00
12c5b78cf1 Merge version_3 into main
Merge version_3 into main
2026-05-22 18:14:57 +00:00
c028f6c59d Update src/app/page.tsx 2026-05-22 18:14:54 +00:00
112ebadb06 Merge version_2 into main
Merge version_2 into main
2026-05-22 18:11:05 +00:00
32948f3bac Update src/app/page.tsx 2026-05-22 18:11:02 +00:00
25e993c25f Merge version_2 into main
Merge version_2 into main
2026-05-22 18:10:30 +00:00
001e3959d1 Update src/app/page.tsx 2026-05-22 18:10:27 +00:00
2b0f380a48 Merge version_2 into main
Merge version_2 into main
2026-05-22 18:05:25 +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
9fb7b9e8ac Merge version_2 into main
Merge version_2 into main
2026-05-22 18:05:20 +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
00c6acc056 Merge version_2 into main
Merge version_2 into main
2026-05-22 18:04:37 +00:00
656e7c39a2 Update theme colors 2026-05-22 18:04:31 +00:00
4 changed files with 57 additions and 115 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

@@ -6,7 +6,7 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import TextAbout from '@/components/sections/about/TextAbout';
@@ -30,45 +30,36 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Inicio",
id: "#hero",
},
name: "Inicio", id: "#hero"},
{
name: "Nosotros",
id: "#about",
},
name: "Nosotros", id: "#about"},
{
name: "Opiniones",
id: "#testimonials",
},
name: "Opiniones", id: "#testimonials"},
{
name: "Ubicación",
id: "#contact",
},
name: "Ubicación", id: "#contact"},
]}
brandName="MEDVET"
button={{
text: "WhatsApp",
href: "https://wa.me/528125706529",
}}
text: "WhatsApp", href: "https://wa.me/528125706529"}}
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="MEDVET Monterrey"
description="Comprometidos con la salud y el bienestar de tu mascota. Expertos en Cumbres."
<HeroCarouselLogo
logoText=""
description="<span style='color: black;'>Comprometidos con la salud y el bienestar de tu mascota. Expertos en Cumbres.</span>"
buttons={[
{
text: "Llamar Ahora",
href: "tel:8184000520",
},
text: "Llamar Ahora", href: "tel:8184000520"},
{
text: "WhatsApp",
href: "https://wa.me/528125706529",
},
text: "WhatsApp", href: "https://wa.me/528125706529"},
]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-veterinarian-taking-care-cat_23-2149100169.jpg"
slides={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E5YWegwYm2GBXyF8qGtjaJbIZj/uploaded-1779473873289-fp6neqzg.png", imageAlt: "MEDVET Monterrey Logo"
}
]}
descriptionClassName="text-black font-medium leading-relaxed max-w-2xl"
/>
</div>
@@ -87,20 +78,11 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
title: "Medicina Preventiva",
description: "Vacunación y chequeos rutinarios.",
imageSrc: "http://img.b2bpic.net/free-photo/empty-doctor-office-awaiting-patient-visit-featuring-diagnostic-equipment_482257-118387.jpg",
},
title: "Medicina Preventiva", description: "Vacunación y chequeos rutinarios.", imageSrc: "http://img.b2bpic.net/free-photo/empty-doctor-office-awaiting-patient-visit-featuring-diagnostic-equipment_482257-118387.jpg"},
{
title: "Hospitalización",
description: "Atención 24/7 supervisada.",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-doctor-veterinarian-examining-cute-black-pug-dog-vet-clinic-standing-white-backgrou_1258-160769.jpg",
},
title: "Hospitalización", description: "Atención 24/7 supervisada.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-doctor-veterinarian-examining-cute-black-pug-dog-vet-clinic-standing-white-backgrou_1258-160769.jpg"},
{
title: "Emergencias",
description: "Atención rápida en zona Cumbres.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-cute-dog-vet-clinic_23-2149304335.jpg",
},
title: "Emergencias", description: "Atención rápida en zona Cumbres.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-cute-dog-vet-clinic_23-2149304335.jpg"},
]}
title="Servicios Especializados"
description="Atención médica integral para tus seres queridos."
@@ -114,45 +96,20 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Pablo Hernández",
handle: "@pablo",
testimonial: "Excelente lugar para llevar a atender a tu mascota.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-cute-puppy_23-2149304303.jpg",
},
id: "1", name: "Pablo Hernández", handle: "@pablo", testimonial: "Excelente lugar para llevar a atender a tu mascota.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-holding-cute-puppy_23-2149304303.jpg"},
{
id: "2",
name: "Ma del Rosario Meraz",
handle: "@rosario",
testimonial: "Excelente servicio y atención de los médicos 100% recomendables",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/adorable-chihuahua-dog-with-female-owner_23-2149880067.jpg",
},
id: "2", name: "Ma del Rosario Meraz", handle: "@rosario", testimonial: "Excelente servicio y atención de los médicos 100% recomendables", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/adorable-chihuahua-dog-with-female-owner_23-2149880067.jpg"},
{
id: "3",
name: "Ismael Garrido",
handle: "@ismael",
testimonial: "No he tenido ningún problema.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-happy-smiling-woman-holding-boston-terrier-dog-park-summer-sunny-day-cheerful-mood-playing-with-pet-hugs-wearing-orange-dress-sunglasses-summer-style_285396-5124.jpg",
},
id: "3", name: "Ismael Garrido", handle: "@ismael", testimonial: "No he tenido ningún problema.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-happy-smiling-woman-holding-boston-terrier-dog-park-summer-sunny-day-cheerful-mood-playing-with-pet-hugs-wearing-orange-dress-sunglasses-summer-style_285396-5124.jpg"},
{
id: "4",
name: "Maria Lopez",
handle: "@maria",
testimonial: "Siempre atentos y cuidadosos.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-sitting-chair-stroking-her-cat_23-2147923018.jpg",
},
id: "4", name: "Maria Lopez", handle: "@maria", testimonial: "Siempre atentos y cuidadosos.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-sitting-chair-stroking-her-cat_23-2147923018.jpg"},
{
id: "5",
name: "Juan Perez",
handle: "@juan",
testimonial: "Los mejores en Cumbres.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-man-showing-his-cute-dog-pointing-finger-black-pug-smiling-standing-white-ba_1258-144648.jpg",
},
id: "5", name: "Juan Perez", handle: "@juan", testimonial: "Los mejores en Cumbres.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-man-showing-his-cute-dog-pointing-finger-black-pug-smiling-standing-white-ba_1258-144648.jpg"},
]}
showRating={true}
title="Lo que dicen nuestros clientes"
@@ -165,20 +122,11 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "f1",
title: "¿Cuentan con servicio de WhatsApp?",
content: "Sí, escríbenos al 81 2570 6529.",
},
id: "f1", title: "¿Cuentan con servicio de WhatsApp?", content: "Sí, escríbenos al 81 2570 6529."},
{
id: "f2",
title: "¿Dónde están ubicados?",
content: "Hualahuises 6603, Hacienda de Santa Clara, Monterrey.",
},
id: "f2", title: "¿Dónde están ubicados?", content: "Hualahuises 6603, Hacienda de Santa Clara, Monterrey."},
{
id: "f3",
title: "¿Cuál es su horario?",
content: "Estamos abiertos hasta las 4 p.m.",
},
id: "f3", title: "¿Cuál es su horario?", content: "Estamos abiertos hasta las 4 p.m."},
]}
sideTitle="Preguntas Frecuentes"
faqsAnimation="slide-up"
@@ -189,12 +137,11 @@ export default function LandingPage() {
<ContactSplit
useInvertedBackground={false}
background={{
variant: "animated-grid",
}}
variant: "animated-grid"}}
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?_wi=2"
mediaAnimation="blur-reveal"
buttonText="Abrir en Google Maps"
/>
@@ -204,12 +151,11 @@ export default function LandingPage() {
<ContactSplit
useInvertedBackground={true}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Contacto"
title="Agenda tu cita"
description="Llámanos al 81 8400 0520 o contáctanos por nuestras redes sociales."
imageSrc="http://img.b2bpic.net/free-photo/side-view-smiling-female-veterinarian-with-dog-table-clinic_23-2147928376.jpg"
imageSrc="http://img.b2bpic.net/free-photo/side-view-smiling-female-veteranarian-with-dog-table-clinic_23-2147928376.jpg"
mediaAnimation="slide-up"
buttonText="Enviar mensaje"
/>
@@ -220,34 +166,23 @@ export default function LandingPage() {
logoText="MEDVET"
columns={[
{
title: "Contacto",
items: [
title: "Contacto", items: [
{
label: "81 8400 0520",
href: "tel:8184000520",
},
label: "81 8400 0520", href: "tel:8184000520"},
{
label: "WhatsApp",
href: "https://wa.me/528125706529",
},
label: "WhatsApp", href: "https://wa.me/528125706529"},
],
},
{
title: "Redes",
items: [
title: "Redes", items: [
{
label: "Facebook",
href: "https://facebook.com",
},
label: "Facebook", href: "https://facebook.com"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacidad",
href: "#",
},
label: "Privacidad", href: "#"},
],
},
]}

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;