Merge version_10 into main

Merge version_10 into main
This commit was merged in pull request #12.
This commit is contained in:
2026-05-07 17:20:18 +00:00

View File

@@ -2,13 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
export default function LandingPage() {
@@ -38,16 +38,15 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
<HeroBillboardGallery
title="L'Essence du Cuir"
description="Redécouvrez l'élégance intemporelle à travers nos créations artisanales en cuir."
background={{ variant: "plain" }}
kpis={[
{ value: "15+", label: "Années d'Expérience" },
{ value: "500+", label: "Créations Uniques" },
{ value: "99%", label: "Clients Satisfaits" }
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/full-shot-chic-woman-posing_23-2149267441.jpg?_wi=1" },
{ imageSrc: "http://img.b2bpic.net/free-photo/view-women-s-purse-tiles-with-mediterranean-aesthetics_23-2150916721.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/designer-working-3d-model_23-2149371901.jpg" }
]}
enableKpiAnimation={true}
/>
</div>
@@ -122,16 +121,15 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterLogoEmphasis
logoText="LuxeLeather"
columns={[
{ title: "Navigation", items: [{ label: "Accueil", href: "#hero" }, { label: "Produits", href: "#products" }] },
{ title: "Légal", items: [{ label: "Mentions Légales", href: "#" }, { label: "CGU", href: "#" }] }
{ items: [{ label: "Accueil", href: "#hero" }, { label: "Produits", href: "#products" }] },
{ items: [{ label: "Mentions Légales", href: "#" }, { label: "CGU", href: "#" }] }
]}
bottomLeftText="© 2025 LuxeLeather"
bottomRightText="Tous droits réservés"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}