Update src/app/page.tsx

This commit is contained in:
2026-06-10 03:55:16 +00:00
parent c13229ce27
commit 0d9e8211ff

View File

@@ -7,7 +7,7 @@ import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
@@ -139,15 +139,16 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact" className="mx-auto px-4 md:px-6">
<ContactCenter
<ContactCTA
tag="Contáctanos"
title="¿Listo para tu Experiencia Ahumada?"
description="Envíanos un mensaje para reservas, pedidos especiales o cualquier consulta. ¡Estamos listos para atenderte y hacer de tu visita una ocasión memorable!"
background={{ "variant": "radial-gradient" }}
useInvertedBackground={true}
inputPlaceholder="Tu correo electrónico"
buttonText="Enviar Mensaje"
termsText="Al hacer clic en 'Enviar Mensaje', confirmas que estás de acuerdo con nuestra política de privacidad."
buttons={[
{ "text": "WhatsApp: +51 965 316 290", "href": "https://wa.me/51965316290" },
{ "text": "Llamar: +51 960 620 287", "href": "tel:+51960620287" }
]}
/>
</div>
<div id="footer" data-section="footer" className="mx-auto px-4 md:px-6">
@@ -163,4 +164,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}