Merge version_3 into main #2

Merged
bender merged 1 commits from version_3 into main 2026-04-26 17:02:24 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
@@ -34,8 +34,6 @@ export default function LandingPage() {
name: "Accueil", id: "#hero"},
{
name: "Spécialités", id: "#specialties"},
{
name: "Contact", id: "#contact"},
{
name: "Appelez maintenant", id: "tel:+33668228133"}
]}
@@ -67,8 +65,6 @@ export default function LandingPage() {
buttons={[
{
text: "Appeler maintenant", href: "tel:+33668228133"},
{
text: "Commander", href: "#contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/restaurant-with-leather-sofa-paintings-wall_140725-9715.jpg"
avatars={[
@@ -184,22 +180,14 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={true}
<ContactCTA
tag="Contact"
title="Une envie maintenant ?"
description="Contactez-nous pour commander ou pour toute demande d'information."
inputs={[
{
name: "name", type: "text", placeholder: "Votre nom", required: true,
},
{
name: "phone", type: "tel", placeholder: "Votre téléphone", required: true,
},
description="Passez commande ou contactez-nous pour toute demande."
buttons={[
{ text: "Appeler le 06 68 22 81 33", href: "tel:+33668228133" }
]}
textarea={{
name: "message", placeholder: "Votre message...", rows: 4,
}}
imageSrc="http://img.b2bpic.net/free-photo/close-up-person-s-hand-holding-smartphone-with-map-gps-navigation_23-2147837118.jpg"
background={{ variant: "plain" }}
/>
</div>
@@ -235,4 +223,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}