9 Commits

Author SHA1 Message Date
69b2386ab6 Update src/app/page.tsx 2026-04-25 17:06:26 +00:00
ba4b714c27 Merge version_2 into main
Merge version_2 into main
2026-04-25 17:03:32 +00:00
9d52716bbe Update src/app/page.tsx 2026-04-25 17:03:29 +00:00
8b2a7555f6 Merge version_2 into main
Merge version_2 into main
2026-04-25 17:03:03 +00:00
43d28d25c3 Update src/app/page.tsx 2026-04-25 17:03:00 +00:00
294951dacc Merge version_2 into main
Merge version_2 into main
2026-04-25 17:02:29 +00:00
1a7ef22c87 Update src/app/page.tsx 2026-04-25 17:02:23 +00:00
c9f42e9292 Merge version_1 into main
Merge version_1 into main
2026-04-25 16:58:00 +00:00
b5ac59c275 Merge version_1 into main
Merge version_1 into main
2026-04-25 16:57:30 +00:00

View File

@@ -10,7 +10,7 @@ import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGaller
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import { CheckCircle, Music, Star, Utensils } from "lucide-react";
export default function LandingPage() {
@@ -81,7 +81,7 @@ export default function LandingPage() {
reverse: false
},
{
title: "PlatsSignature", description: "L'expression pure de la tradition française.", media: { imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-placed-mashed-potato-garnished-with-shredded-bell-pepper-thyme_141793-2240.jpg", imageAlt: "Plat" },
title: "Plats Signature", description: "L'expression pure de la tradition française.", media: { imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-placed-mashed-potato-garnished-with-shredded-bell-pepper-thyme_141793-2240.jpg", imageAlt: "Plat" },
items: [{ icon: CheckCircle, text: "Viandes sélectionnées" }, { icon: CheckCircle, text: "Cuissons maîtrisées" }],
reverse: true
},
@@ -105,7 +105,7 @@ export default function LandingPage() {
products={[
{ id: "1", name: "Tartare de St-Jacques", price: "180 MAD", imageSrc: "http://img.b2bpic.net/free-photo/chicken-leg-served-with-mashed-potatoes-sour-cream_7502-7082.jpg" },
{ id: "2", name: "Filet de Boeuf Rossini", price: "350 MAD", imageSrc: "http://img.b2bpic.net/free-photo/caesar-salad-with-chicken-lettuce-tomatoes-grated-cheese_140725-7780.jpg" },
{ id: "3", name: "Soufflé au Grand Marnier", price: "120 MAD", imageSrc: "http://img.b2bpic.net/free-photo/view-beautifully-designed-delicious-dessert-with-chocolate-cinnamon-with-topping-it_181624-23843.jpg" }
{ id: "3", name: "Soufflé au Grand Marnier", price: "120 MAD", imageSrc: "http://img.b2bpic.net/free-photo/view-beautifully-designed-delicious-dessert-with-chocolate-cinnamon-with-topping-it_181624-23843.jpg?_wi=1" }
]}
title="Notre sélection du moment"
description="Découvrez une carte qui se réinvente au fil des saisons."
@@ -129,24 +129,25 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="split"
<TestimonialCardTen
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{ id: "t1", name: "Kawtar B.", date: "3 mois", title: "Anniversaire", quote: "On nous a bien gâtés ! Ils sont au petit soin.", tag: "Excellent", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-asian-man-friends-reunion_23-2149244687.jpg" },
{ id: "t2", name: "Ghita H.", date: "6 mois", title: "Soirée romantique", quote: "Endroit très classe, chaleureux et élégant.", tag: "Parfait", avatarSrc: "http://img.b2bpic.net/free-photo/business-woman-having-lunch-cafe_1303-23875.jpg" }
]}
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">
<ContactText
useInvertedBackground={false}
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" }}
text="Prêt pour une expérience gastronomique ? Réservez votre table dès maintenant au 06 08 01 01 59."
buttons={[{ text: "Appeler L'Octave", href: "tel:0608010159" }]}
useInvertedBackground={false}
/>
</div>
@@ -163,4 +164,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}