Merge version_3 into main #6

Merged
bender merged 1 commits from version_3 into main 2026-04-25 17:06:30 +00:00

View File

@@ -3,14 +3,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import ContactText from '@/components/sections/contact/ContactText';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import { CheckCircle, Music, Star, Utensils } from "lucide-react";
export default function LandingPage() {
@@ -129,30 +129,25 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
textboxLayout="split"
<TestimonialCardTen
textboxLayout="default"
useInvertedBackground={true}
showRating={true}
animationType="blur-reveal"
testimonials={[
{ id: "t1", name: "Kawtar B.", handle: "Anniversaire", testimonial: "On nous a bien gâtés ! Ils sont au petit soin.", rating: 5 },
{ id: "t2", name: "Ghita H.", handle: "Soirée romantique", testimonial: "Endroit très classe, chaleureux et élégant.", rating: 5 }
]}
title="Ce que disent nos convives"
description="Des moments inoubliables partagés avec vous."
testimonials={[
{ id: "t1", title: "Parfait", quote: "On nous a bien gâtés ! Ils sont au petit soin.", name: "Kawtar B.", role: "Cliente régulière" },
{ id: "t2", title: "Merveilleux", quote: "Endroit très classe, chaleureux et élégant.", name: "Ghita H.", role: "Soirée romantique" },
{ id: "t3", title: "Exceptionnel", quote: "Le meilleur restaurant de la ville, sans hésiter.", name: "Marc S.", role: "Gastronome" },
{ id: "t4", title: "Unique", quote: "La musique piano live ajoute une dimension magique.", name: "Sarah L.", role: "Client" }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Contact"
title="Réservez votre table"
description="Prêt pour une expérience gastronomique ? Laissez-nous vos coordonnées ou appelez-nous directement."
<ContactText
text="Envie de réserver votre table à L'Octave ? Contactez-nous au 06 08 01 01 59 ou passez nous voir directement au 6 Rue Michel Ange, Casablanca."
background={{ variant: "rotated-rays-static" }}
useInvertedBackground={false}
buttonText="Envoyer"
onSubmit={(email) => console.log("Form submitted with email:", email)}
imageSrc="http://img.b2bpic.net/free-photo/view-beautifully-designed-delicious-dessert-with-chocolate-cinnamon-with-topping-it_181624-23843.jpg?_wi=2"
/>
</div>
@@ -169,4 +164,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}