Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 800743a542 | |||
| c6cd3e0e16 | |||
| 1fc689475a | |||
| dcc67424eb |
@@ -9,7 +9,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
|
|||||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||||
import { Heart, Sparkles, UtensilsCrossed, Wine } from 'lucide-react';
|
import { Heart, Sparkles, UtensilsCrossed, Wine } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -77,6 +77,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/italian-tiramisu-cocktail-glass-topped-with-coffee-sprinkles-strawberry_140725-2541.jpg", imageAlt: "Bar à cocktails élégant au Bistrot de Buci"},
|
imageSrc: "http://img.b2bpic.net/free-photo/italian-tiramisu-cocktail-glass-topped-with-coffee-sprinkles-strawberry_140725-2541.jpg", imageAlt: "Bar à cocktails élégant au Bistrot de Buci"},
|
||||||
]}
|
]}
|
||||||
|
titleClassName="text-6xl sm:text-7xl md:text-8xl lg:text-9xl font-extrabold tracking-tight text-white"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -173,27 +174,36 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardSixteen
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonial="Un moment magique dans un cadre somptueux, la cuisine est exquise et le service impeccable. Une adresse incontournable à Paris que nous recommandons vivement !"
|
title="Ce que disent nos clients"
|
||||||
rating={5}
|
description="Découvrez les avis de ceux qui ont savouré l'expérience Bistrot de Buci. Leurs histoires racontent notre passion pour la cuisine française et le service d'exception."
|
||||||
author="Sophie L. (Google Avis)"
|
textboxLayout="default"
|
||||||
avatars={[
|
animationType="slide-up"
|
||||||
|
carouselMode="auto"
|
||||||
|
testimonials={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg", alt: "Photo de Sophie L."},
|
id: "sophie-l", name: "Sophie L.", role: "Gastronome avertie", company: "Google Avis", rating: 5,
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg", imageAlt: "Photo de Sophie L."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-attractive-man-closeup_657883-694.jpg", alt: "Photo de Jean M."},
|
id: "jean-m", name: "Jean M.", role: "Amoureux de la cuisine", company: "LaFourchette", rating: 5,
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-man-closeup_657883-694.jpg", imageAlt: "Photo de Jean M."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151098593.jpg", alt: "Photo de Claire D."},
|
id: "isabelle-g", name: "Isabelle G.", role: "Bloggeuse culinaire", company: "TripAdvisor", rating: 5,
|
||||||
|
videoSrc: "https://videos.pexels.com/video-files/3884394/3884394-uhd_2160_3840_30fps.mp4", videoAriaLabel: "Vidéo d'une cliente satisfaite"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/smiling-successful-middle-aged-business-leader_1262-5690.jpg", alt: "Photo de Pierre E."},
|
id: "pierre-a", name: "Pierre A.", role: "Client fidèle", company: "Réservation Directe", rating: 5,
|
||||||
{
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-successful-middle-aged-business-leader_1262-5690.jpg", imageAlt: "Photo de Pierre A."
|
||||||
src: "http://img.b2bpic.net/free-photo/happy-female-colleagues-embracing-with-eyes-closed-while-having-coffee-break-cafe_637285-8148.jpg", alt: "Photo d'un couple"},
|
}
|
||||||
{
|
]}
|
||||||
src: "http://img.b2bpic.net/free-photo/group-young-people-enjoying-dinner-together_23-2148454092.jpg", alt: "Photo d'un groupe d'amis"},
|
kpiItems={[
|
||||||
|
{ value: "4.9 / 5", label: "Note moyenne" },
|
||||||
|
{ value: "300+", label: "Avis vérifiés" },
|
||||||
|
{ value: "Expérience Positive", label: "Recommandations" }
|
||||||
]}
|
]}
|
||||||
ratingAnimation="slide-up"
|
|
||||||
avatarsAnimation="opacity"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user