Merge version_5 into main

Merge version_5 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-05-12 19:04:44 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
@@ -161,22 +161,26 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
<ContactSplit
tag="Newsletter"
title="Únete a nuestro club"
description="Recibe actualizaciones exclusivas sobre nuevas colecciones y eventos especiales."
background={{ variant: "radial-gradient" }}
text="¿Listo para elevar tu estilo? Contáctanos hoy."
buttons={[{ text: "WhatsApp", href: "#" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
<FooterBase
logoText="Yovani.B"
columns={[{ title: "Tienda", items: [{ label: "Catálogo", href: "#products" }, { label: "Perfumes", href: "#products" }] }, { title: "Ayuda", items: [{ label: "FAQ", href: "#faq" }, { label: "Contacto", href: "#contact" }] }]}
copyrightText="© 2024 Yovani.B."
columns={[
{ title: "Tienda", items: [{ label: "Catálogo", href: "#products" }, { label: "Perfumes", href: "#products" }] },
{ title: "Ayuda", items: [{ label: "FAQ", href: "#faq" }, { label: "Contacto", href: "#contact" }] },
{ title: "Redes", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] }
]}
copyrightText="© 2025 Yovani.B. Todos los derechos reservados."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}