3 Commits

Author SHA1 Message Date
6bfb31f4ec Update src/app/page.tsx 2026-05-11 01:34:48 +00:00
5ce7688c55 Merge version_2 into main
Merge version_2 into main
2026-05-11 01:29:54 +00:00
8d4240aa87 Merge version_2 into main
Merge version_2 into main
2026-05-11 01:29:22 +00:00

View File

@@ -143,10 +143,10 @@ export default function LandingPage() {
title="Agenda tu cita hoy" title="Agenda tu cita hoy"
description="Estamos listos para atenderte en nuestra clínica. Envíanos tus detalles y nos pondremos en contacto." description="Estamos listos para atenderte en nuestra clínica. Envíanos tus detalles y nos pondremos en contacto."
inputs={[ inputs={[
{ name: "nombre", type: "text", placeholder: "Tu nombre completo" }, { name: "nombre", type: "text", placeholder: "Tu nombre completo (requerido)" },
{ name: "email", type: "email", placeholder: "Tu correo electrónico" } { name: "email", type: "email", placeholder: "Tu correo electrónico (requerido)" }
]} ]}
textarea={{ name: "mensaje", placeholder: "Cuéntanos cómo podemos ayudarte" }} textarea={{ name: "mensaje", placeholder: "Cuéntanos cómo podemos ayudarte (opcional)" }}
imageSrc="http://img.b2bpic.net/free-photo/close-up-doctor-patient-clinic_23-2149103571.jpg" imageSrc="http://img.b2bpic.net/free-photo/close-up-doctor-patient-clinic_23-2149103571.jpg"
useInvertedBackground={false} useInvertedBackground={false}
/> />
@@ -157,11 +157,11 @@ export default function LandingPage() {
logoText="Sonrisa Perfecta" logoText="Sonrisa Perfecta"
columns={[ columns={[
{ title: "Navegación", items: [{ label: "Inicio", href: "#hero" }, { label: "Servicios", href: "#services" }] }, { title: "Navegación", items: [{ label: "Inicio", href: "#hero" }, { label: "Servicios", href: "#services" }] },
{ title: "Legal", items: [{ label: "Privacidad", href: "#" }, { label: "Términos", href: "#" }] }, { title: "Legal", items: [{ label: "Política de Privacidad y Protección de Datos", href: "#" }, { label: "Términos y Condiciones", href: "#" }] },
]} ]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }