From d7a0494ed7693916bb9a25986be2bfce92213b37 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 21 May 2026 01:22:19 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3224601..eee67d1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,7 +13,7 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import { Sparkles, Award, Star, MapPin, Phone, Scissors } from 'lucide-react'; +import { Star, MapPin, Scissors } from 'lucide-react'; export default function LandingPage() { return ( @@ -39,7 +39,7 @@ export default function LandingPage() { { name: "Testimonios", id: "influencers" }, { name: "Contacto", id: "contact" } ]} - button={{ text: "Reservar Cita", href: "tel:2221138865" }} + button={{ text: "Reservar Cita", onClick: () => window.location.href = "tel:2221138865" }} /> @@ -53,7 +53,7 @@ export default function LandingPage() { background={{ variant: "plain" }} buttons={[ { text: "Ver Servicios", href: "#products" }, - { text: "Agendar ahora", href: "tel:2221138865" } + { text: "Agendar ahora", onClick: () => window.location.href = "tel:2221138865" } ]} buttonAnimation="slide-up" carouselItems={[ @@ -109,7 +109,7 @@ export default function LandingPage() { features={[ { title: "Dirección", description: "Av. Juárez 222, Col. La Paz, Puebla.", imageSrc: "http://img.b2bpic.net/free-photo/ai-generated-modern-styled-entryway_23-2150692191.jpg" }, { title: "Horario", description: "Martes a Sábado de 10:00 a 20:00 hrs.", imageSrc: "http://img.b2bpic.net/free-photo/hair-tool-assortment-sakura-blossoms_23-2148352917.jpg" }, - { title: "Atención", description: "Llámanos al 222 113 8865 para tu cita.", imageSrc: "http://img.b2bpic.net/free-photo/happy-friendly-seller-talking-customer-jewelry-store-woman-consulting-shop-assistant-showcase-shopping-service-concept_74855-11796.jpg" } + { title: "Atención", description: "Llámanos al 222 113 8865 para tu cita.", imageSrc: "http://img.b2bpic.net/free-photo/happy-friendly-seller-talking-customer-jewelry-store-woman-consulting-shop-assistant-showcase-shopping-service-concept_74855-11796.jpg", buttons: [{text: "Llamar", onClick: () => window.location.href = "tel:2221138865"}] } ]} textboxLayout="default" useInvertedBackground={false} @@ -188,7 +188,8 @@ export default function LandingPage() { { name: "name", type: "text", placeholder: "Nombre" }, { name: "phone", type: "tel", placeholder: "Teléfono" } ]} - buttonText="Llamar al 222 113 8865" + onSubmit={(data) => console.log("Form submitted:", data)} + buttonText="Enviar mensaje" imageSrc="http://img.b2bpic.net/free-photo/view-luxurious-golden-ring-with-basket_23-2150329682.jpg" useInvertedBackground={true} /> @@ -197,10 +198,10 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1