Update src/app/page.tsx

This commit is contained in:
2026-05-11 14:28:26 +00:00
parent 3a7b5c1df2
commit b299b97c06

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterCard from '@/components/sections/footer/FooterCard';
import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
@@ -12,6 +12,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import TextAbout from '@/components/sections/about/TextAbout'; import TextAbout from '@/components/sections/about/TextAbout';
import { Instagram, Facebook, Twitter } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -160,13 +161,14 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterCard
columns={[ logoText="DG AUTO"
{ title: "Navigation", items: [{ label: "Accueil", href: "#hero" }, { label: "Services", href: "#features" }] }, socialLinks={[
{ title: "Légal", items: [{ label: "Confidentialité", href: "#" }, { label: "Mentions légales", href: "#" }] }, { icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" }
]} ]}
bottomLeftText="© 2025 DG AUTO" copyrightText="© 2025 DG AUTO | Performance de précision"
bottomRightText="Performance de précision"
/> />
</div> </div>
</ReactLenis> </ReactLenis>