Update src/app/page.tsx

This commit is contained in:
2026-05-09 01:43:44 +00:00
parent e57728dd0b
commit ade26dbd08

View File

@@ -221,18 +221,18 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <ContactSplitForm
useInvertedBackground={false} useInvertedBackground={false}
title="Visit Us Today" title="Visítanos Hoy"
description="Get in touch or schedule your next salon appointment." description="Ponte en contacto o programa tu próxima cita en el salón."
inputs={[ inputs={[
{ {
name: "name", type: "text", placeholder: "Your Name", required: true, name: "name", type: "text", placeholder: "Tu Nombre", required: true,
}, },
{ {
name: "email", type: "email", placeholder: "Your Email", required: true, name: "email", type: "email", placeholder: "Tu Email", required: true,
}, },
]} ]}
textarea={{ textarea={{
name: "message", placeholder: "How can we help you?", required: true, name: "message", placeholder: "¿Cómo podemos ayudarte?", required: true,
}} }}
imageSrc="http://img.b2bpic.net/free-photo/portrait-female-cashier-business-front-desk-swiping-credit-card-reader-smiling_662251-2184.jpg" imageSrc="http://img.b2bpic.net/free-photo/portrait-female-cashier-business-front-desk-swiping-credit-card-reader-smiling_662251-2184.jpg"
/> />
@@ -242,19 +242,19 @@ export default function LandingPage() {
<FooterBase <FooterBase
columns={[ columns={[
{ {
title: "Company", items: [ title: "Empresa", items: [
{ {
label: "About", href: "#about"}, label: "Sobre nosotros", href: "#about"},
{ {
label: "Services", href: "#features"}, label: "Servicios", href: "#features"},
], ],
}, },
{ {
title: "Legal", items: [ title: "Legal", items: [
{ {
label: "Privacy", href: "#"}, label: "Privacidad", href: "#"},
{ {
label: "Terms", href: "#"}, label: "Términos", href: "#"},
], ],
}, },
]} ]}
@@ -264,4 +264,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }