diff --git a/src/app/page.tsx b/src/app/page.tsx index c8e0eeb..4f1c460 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,6 +3,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactText from '@/components/sections/contact/ContactText'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; @@ -30,8 +31,8 @@ export default function LandingPage() { navItems={[ { name: "Services", id: "services" }, { name: "Pourquoi nous", id: "why-us" }, - { name: "Réalisations", id: "realisations" }, { name: "Avis", id: "avis" }, + { name: "Demander un devis", id: "quote-request" }, { name: "Contact", id: "contact" } ]} brandName="Douieb Plomberie Services" @@ -45,7 +46,7 @@ export default function LandingPage() { description="Votre plombier de confiance à Limoges. Intervention rapide, devis gratuit, disponible 24h/24 et 7j/7." buttons={[ { text: "Appeler maintenant (06 51 74 55 39)", href: "tel:0651745539" }, - { text: "Demander un devis", href: "mailto:douiebplomberielimoges@gmail.com" } + { text: "Demander un devis", href: "#quote-request" } ]} buttonAnimation="slide-up" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BUZmE6e7SUdIwin449cyz1IaMx/uploaded-1774549248472-4wj6mynn.jpg" @@ -94,6 +95,20 @@ export default function LandingPage() { /> +
+ +
+
); -} \ No newline at end of file +}