4 Commits

Author SHA1 Message Date
9ca2d097fd Update src/app/page.tsx 2026-05-07 17:20:38 +00:00
ddd5aeef33 Update src/app/page.tsx 2026-05-07 17:20:14 +00:00
7a47df80ca Merge version_9 into main
Merge version_9 into main
2026-05-07 17:15:56 +00:00
e56414ab7e Merge version_9 into main
Merge version_9 into main
2026-05-07 17:15:26 +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?_wi=1" },
{ imageSrc: "http://img.b2bpic.net/free-photo/designer-working-3d-model_23-2149371901.jpg?_wi=1" }
]}
enableKpiAnimation={true}
/>
</div>
@@ -61,7 +60,7 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{ id: "p1", brand: "LuxeLeather", name: "Sac Iconique", price: "450€", rating: 5, reviewCount: "24 avis", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-chic-woman-posing_23-2149267441.jpg?_wi=1" },
{ id: "p2", brand: "LuxeLeather", name: "Balghas Tradition", price: "120€", rating: 4, reviewCount: "18 avis", imageSrc: "http://img.b2bpic.net/free-photo/view-women-s-purse-tiles-with-mediterranean-aesthetics_23-2150916721.jpg" }
{ id: "p2", brand: "LuxeLeather", name: "Balghas Tradition", price: "120€", rating: 4, reviewCount: "18 avis", imageSrc: "http://img.b2bpic.net/free-photo/view-women-s-purse-tiles-with-mediterranean-aesthetics_23-2150916721.jpg?_wi=2" }
]}
/>
</div>
@@ -88,7 +87,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
team={[
{ id: "1", name: "Marie L.", role: "Artisane Maroquinière", imageSrc: "http://img.b2bpic.net/free-photo/designer-working-3d-model_23-2149371901.jpg" },
{ id: "1", name: "Marie L.", role: "Artisane Maroquinière", imageSrc: "http://img.b2bpic.net/free-photo/designer-working-3d-model_23-2149371901.jpg?_wi=2" },
{ id: "2", name: "Jean D.", role: "Maître Artisan", imageSrc: "http://img.b2bpic.net/free-photo/front-view-people-chatting-classroom_23-2150331688.jpg" }
]}
/>
@@ -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>
);
}
}