Merge version_2 into main #1

Merged
bender merged 1 commits from version_2 into main 2026-05-21 01:22:26 +00:00

View File

@@ -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" }}
/>
</div>
@@ -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() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="NUDO"
columns={[{ items: [{ label: "Contacto: 222 113 8865" }, { label: "La Paz, Puebla" }] }]}
columns={[{ items: [{ label: "Llamar", onClick: () => window.location.href = "tel:2221138865" }, { label: "Ubicación", href: "#ingredients" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}