Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aaf371d895 | |||
| 76db3d45c3 |
@@ -3,7 +3,7 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||||
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
@@ -56,39 +56,33 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardOne
|
<TestimonialCardSix
|
||||||
title="Ils parlent de nous"
|
title="Ils parlent de nous"
|
||||||
description="Des témoignages authentiques de nos hôtes. Chaque visite renforce notre engagement envers la convivialité, la générosité et l'authenticité."
|
description="Des témoignages authentiques de nos hôtes. Chaque visite renforce notre engagement envers la convivialité, la générosité et l'authenticité."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Sandrine Michel", role: "Avocate", company: "Albi", rating: 5,
|
id: "1", name: "Sandrine Michel", handle: "Avocate • Albi", testimonial: "Une expérience culinaire inoubliable. L'accueil est chaleureux, la cuisine est sincère et généreuse. Je reviens régulièrement et je recommande vivement!"
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-holding-plate-with-muffin_107420-12322.jpg"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Claire Rousseau", role: "Chef de projet", company: "Toulouse", rating: 5,
|
id: "2", name: "Claire Rousseau", handle: "Chef de projet • Toulouse", testimonial: "Les Conviviales est devenu mon restaurant préféré. L'équipe connaît mes envies et adapte chaque plat avec passion. Merci pour cette convivialité authentique!"
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-happy-woman-speaks-via-mobile-phone-while-relaxes-cozy-coffee-shop_273609-2525.jpg"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Jean & Nathalie Dupont", role: "Entrepreneurs", company: "Albi", rating: 5,
|
id: "3", name: "Jean & Nathalie Dupont", handle: "Entrepreneurs • Albi", testimonial: "Nous venons célébrer chaque moment important chez Les Conviviales. L'atmosphère, la qualité des produits et l'accueil... tout est parfait. Un vrai havre de convivialité!"
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-drinking-wine-bar_1098-1594.jpg"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "Pierre Lacroix", role: "Musicien", company: "Albi", rating: 5,
|
id: "4", name: "Pierre Lacroix", handle: "Musicien • Albi", testimonial: "Chaque visite est une symphonie de saveurs et d'émotions. L'équipe crée une ambiance où vous vous sentez vraiment chez vous. Merci pour cette générosité!"
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/people-stands-looks-documents_1157-45828.jpg"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5", name: "Agnès Fournier", role: "Restauratrice", company: "Albi", rating: 5,
|
id: "5", name: "Agnès Fournier", handle: "Restauratrice • Albi", testimonial: "En tant que restauratrice, j'apprécie particulièrement l'authenticité et la sincérité de leur approche culinaire. Les produits frais, le service humain... c'est exactement ce qui devrait exister partout!"
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-woman-with-husband-eating-cake-outside-veranda_23-2148216460.jpg"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6", name: "Famille Mercier", role: "Clients réguliers", company: "Albi", rating: 5,
|
id: "6", name: "Famille Mercier", handle: "Clients réguliers • Albi", testimonial: "Les Conviviales est notre restaurant de cœur. Nos enfants adorent l'ambiance, les assiettes généreuses et l'accueil bienveillant. C'est plus qu'un restaurant, c'est une famille!"
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/group-young-people-enjoying-dinner-wine_23-2148454118.jpg"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
|
||||||
animationType="blur-reveal"
|
animationType="blur-reveal"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
|
ariaLabel="Customer testimonials section"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user