1 Commits

Author SHA1 Message Date
f2e1b5d800 Update src/app/page.tsx 2026-03-08 17:22:58 +00:00

View File

@@ -5,7 +5,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { CheckCircle } from 'lucide-react';
@@ -50,7 +50,6 @@ export default function LandingPage() {
{ text: "Voir le menu", href: "menu" },
{ text: "Itinéraire", href: "contact" }
]}
imageSrc="http://img.b2bpic.net/free-photo/happy-couple-lovely-date_23-2148422309.jpg"
imageAlt="Intérieur élégant de la brasserie La Boul'Mich"
/>
</div>
@@ -115,34 +114,24 @@ export default function LandingPage() {
</div>
<div id="reviews" data-section="reviews">
<TestimonialCardSixteen
title="Ce que nos clients disent"
description="Nos clients apprécient notre engagement envers l'excellence culinaire et notre atmosphère accueillante."
<TestimonialCardTwelve
testimonials={[
{
id: "1", name: "Marie Dupont", role: "Client régulière", company: "Montauban", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-happy-couple-taking-selfie-with-mobile-phone-while-enjoying-date-restaurant_58466-16341.jpg", imageAlt: "happy restaurant customer portrait smiling"
id: "1", name: "Marie Dupont", imageSrc: "http://img.b2bpic.net/free-photo/young-happy-couple-taking-selfie-with-mobile-phone-while-enjoying-date-restaurant_58466-16341.jpg", imageAlt: "happy restaurant customer portrait smiling"
},
{
id: "2", name: "Jean-Pierre Moreau", role: "Critique gastronomique", company: "Montauban Gourmand", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-holding-coffee-cup_23-2149455885.jpg", imageAlt: "pleased restaurant guest portrait satisfied"
id: "2", name: "Jean-Pierre Moreau", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-holding-coffee-cup_23-2149455885.jpg", imageAlt: "pleased restaurant guest portrait satisfied"
},
{
id: "3", name: "Sophie Laurent", role: "Restauratrice passionnée", company: "Montauban", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-chatting-table_23-2149213369.jpg", imageAlt: "content restaurant visitor portrait smiling"
id: "3", name: "Sophie Laurent", imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-chatting-table_23-2149213369.jpg", imageAlt: "content restaurant visitor portrait smiling"
},
{
id: "4", name: "Philippe Rousseau", role: "Chef de cuisine", company: "La Boul'Mich", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-holding-tray-muffins-counter_107420-12317.jpg", imageAlt: "pleased restaurant patron portrait satisfied"
id: "4", name: "Philippe Rousseau", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-holding-tray-muffins-counter_107420-12317.jpg", imageAlt: "pleased restaurant patron portrait satisfied"
}
]}
kpiItems={[
{ value: "4.9 ⭐", label: "Note globale" },
{ value: "300+", label: "Avis clients" },
{ value: "10+", label: "Années d'excellence" }
]}
animationType="slide-up"
textboxLayout="default"
cardTitle="Nos clients satisfaits recommandent La Boul'Mich"
cardTag="Avis clients Google"
cardAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
@@ -210,4 +199,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}