Update src/app/page.tsx

This commit is contained in:
2026-05-09 10:05:58 +00:00
parent e5cc56ec3b
commit e9592a2591

View File

@@ -5,10 +5,10 @@ import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import TextAbout from '@/components/sections/about/TextAbout';
@@ -30,7 +30,7 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
<NavbarStyleCentered
navItems={[
{ name: "Accueil", id: "#hero" },
{ name: "À Propos", id: "#about" },
@@ -195,12 +195,22 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterBaseReveal
logoText="Norwan Pavé"
leftLink={{
text: "Politique de confidentialité", href: "#"}}
rightLink={{
text: "Contactez-nous", href: "#contact"}}
columns={[
{
title: "Services", items: [
{ label: "Pavage", href: "#features" },
{ label: "Terrasses", href: "#features" }
]
},
{
title: "Entreprise", items: [
{ label: "À Propos", href: "#about" },
{ label: "Contact", href: "#contact" }
]
}
]}
/>
</div>
</ReactLenis>