Update src/app/page.tsx

This commit is contained in:
2026-05-06 18:02:03 +00:00
parent 0b94e7c9e5
commit 53d58651e6

View File

@@ -2,7 +2,6 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterBase from '@/components/sections/footer/FooterBase';
@@ -38,7 +37,6 @@ export default function LandingPage() {
{ name: "Accueil", id: "hero" },
{ name: "À propos", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Contact", id: "contact" },
]}
brandName="La Cucina"
button={{ text: "Réserver une table", href: reservationLink, onClick: () => window.open(reservationLink, "_blank") }}
@@ -146,21 +144,10 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "plain" }}
title=""
description="Pour toute réservation ou demande traiteur, contactez-nous via ce formulaire ou par téléphone."
buttonText="Envoyer demande"
tag="Contact"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Navigation", items: [{ label: "Accueil", href: "#hero" }, { label: "Menu", href: "#menu" }, { label: "Contact", href: "#contact" }] },
{ title: "Navigation", items: [{ label: "Accueil", href: "#hero" }, { label: "Menu", href: "#menu" }] },
{ title: "Réservations", items: [{ label: "Réserver une table", href: reservationLink }] },
{ title: "Informations", items: [{ label: "+32 65 43 04 18", href: "tel:+3265430418" }, { label: "Rue du Village 101, 7390 Quaregnon", href: "https://maps.google.com" }] },
]}