Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
282
src/app/page.tsx
282
src/app/page.tsx
@@ -10,6 +10,7 @@ import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarou
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import { Heart, Sparkles, UtensilsCrossed, Wine } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,34 +31,20 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Accueil",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Accueil", id: "#hero"},
|
||||
{
|
||||
name: "Ambiance",
|
||||
id: "#ambiance",
|
||||
},
|
||||
name: "Ambiance", id: "#ambiance"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
name: "Menu", id: "#menu"},
|
||||
{
|
||||
name: "Galerie",
|
||||
id: "#gallery",
|
||||
},
|
||||
name: "Galerie", id: "#gallery"},
|
||||
{
|
||||
name: "Avis",
|
||||
id: "#testimonials",
|
||||
},
|
||||
name: "Avis", id: "#testimonials"},
|
||||
{
|
||||
name: "Réservation",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Réservation", id: "#contact"},
|
||||
]}
|
||||
topBarButton={{
|
||||
text: "📞 Réserver maintenant",
|
||||
href: "tel:+33144410035",
|
||||
}}
|
||||
text: "📞 Réserver maintenant", href: "tel:+33144410035"}}
|
||||
brandName="Bistrot de Buci"
|
||||
/>
|
||||
</div>
|
||||
@@ -65,47 +52,30 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
title="Bistrot de Buci"
|
||||
description="L’élégance de la cuisine française au cœur de Paris"
|
||||
tagAnimation="opacity"
|
||||
buttons={[
|
||||
{
|
||||
text: "🍽️ Voir le menu",
|
||||
href: "#menu",
|
||||
},
|
||||
text: "🍽️ Voir le menu", href: "#menu"},
|
||||
{
|
||||
text: "📞 Réserver une table",
|
||||
href: "tel:+33144410035",
|
||||
},
|
||||
text: "📞 Réserver une table", href: "tel:+33144410035"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-chopped-vegetable-salad-with-chicken-pineapple-plate-table_140725-11500.jpg",
|
||||
imageAlt: "Extérieur du Bistrot de Buci la nuit",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-chopped-vegetable-salad-with-chicken-pineapple-plate-table_140725-11500.jpg", imageAlt: "Extérieur du Bistrot de Buci la nuit"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-couple-sitting-patio-drinking-red-wine_23-2147891238.jpg",
|
||||
imageAlt: "Intérieur romantique du Bistrot de Buci",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-couple-sitting-patio-drinking-red-wine_23-2147891238.jpg", imageAlt: "Intérieur romantique du Bistrot de Buci"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cooking-tomahawk-beef-steak-gourmet-dish-stove_482257-121134.jpg",
|
||||
imageAlt: "Chef dressant un plat gastronomique",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cooking-tomahawk-beef-steak-gourmet-dish-stove_482257-121134.jpg", imageAlt: "Chef dressant un plat gastronomique"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waiter-holding-tray-with-glasses-white-wine-it-serving-them-guests-balcony_181624-57937.jpg",
|
||||
imageAlt: "Sommelier versant du vin pour un accord mets et vins",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waiter-holding-tray-with-glasses-white-wine-it-serving-them-guests-balcony_181624-57937.jpg", imageAlt: "Sommelier versant du vin pour un accord mets et vins"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coloured-macarons_1112-141.jpg",
|
||||
imageAlt: "Plateau de desserts gastronomiques français",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coloured-macarons_1112-141.jpg", imageAlt: "Plateau de desserts gastronomiques français"},
|
||||
{
|
||||
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"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -116,33 +86,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Bistrot Parisien Romantique",
|
||||
description: "L'élégance intemporelle d'un bistrot français, revisitée avec une touche de romantisme et de luxe discret. Parfait pour les dîners en tête-à-tête.",
|
||||
buttonIcon: "Heart",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-dinner-new-modern-indoor_1122-2075.jpg",
|
||||
imageAlt: "Coin douillet du restaurant",
|
||||
},
|
||||
title: "Bistrot Parisien Romantique", description: "L'élégance intemporelle d'un bistrot français, revisitée avec une touche de romantisme et de luxe discret. Parfait pour les dîners en tête-à-tête.", buttonIcon: Heart,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-dinner-new-modern-indoor_1122-2075.jpg", imageAlt: "Coin douillet du restaurant"},
|
||||
{
|
||||
title: "Ambiance Chaleureuse et Élégante",
|
||||
description: "Des lumières tamisées, des matériaux nobles et une décoration raffinée créent une atmosphère cosy et sophistiquée, où le temps semble s'arrêter.",
|
||||
buttonIcon: "Sparkles",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/table-assortment-with-plant-flat-lay_23-2148914892.jpg",
|
||||
imageAlt: "Table élégamment dressée",
|
||||
},
|
||||
title: "Ambiance Chaleureuse et Élégante", description: "Des lumières tamisées, des matériaux nobles et une décoration raffinée créent une atmosphère cosy et sophistiquée, où le temps semble s'arrêter.", buttonIcon: Sparkles,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/table-assortment-with-plant-flat-lay_23-2148914892.jpg", imageAlt: "Table élégamment dressée"},
|
||||
{
|
||||
title: "Terrasse Animée Rue de Buci",
|
||||
description: "Profitez de l'effervescence du quartier de Saint-Germain-des-Prés depuis notre terrasse, un lieu idéal pour observer la vie parisienne.",
|
||||
buttonIcon: "UtensilsCrossed",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/european-streets-illustration_23-2151904752.jpg",
|
||||
imageAlt: "Terrasse animée du restaurant",
|
||||
},
|
||||
title: "Terrasse Animée Rue de Buci", description: "Profitez de l'effervescence du quartier de Saint-Germain-des-Prés depuis notre terrasse, un lieu idéal pour observer la vie parisienne.", buttonIcon: UtensilsCrossed,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/european-streets-illustration_23-2151904752.jpg", imageAlt: "Terrasse animée du restaurant"},
|
||||
{
|
||||
title: "Expérience Gastronomique Intime",
|
||||
description: "Chaque repas est une célébration, chaque plat une œuvre. Nous vous invitons à une dégustation exclusive, loin du tumulte, au cœur de l'excellence.",
|
||||
buttonIcon: "Wine",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-empty-wine-bar-wood_1203-5004.jpg",
|
||||
imageAlt: "Cave à vin du restaurant",
|
||||
},
|
||||
title: "Expérience Gastronomique Intime", description: "Chaque repas est une célébration, chaque plat une œuvre. Nous vous invitons à une dégustation exclusive, loin du tumulte, au cœur de l'excellence.", buttonIcon: Wine,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-empty-wine-bar-wood_1203-5004.jpg", imageAlt: "Cave à vin du restaurant"},
|
||||
]}
|
||||
title="Une Ambiance Inoubliable"
|
||||
description="Découvrez l'âme de notre bistrot parisien, où chaque détail est pensé pour une expérience romantique et chaleureuse. Un cadre intime pour vos moments privilégiés."
|
||||
@@ -154,49 +108,20 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "foie-gras",
|
||||
name: "Foie gras maison",
|
||||
price: "28€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lamb-bone-covered-with-dough-finely-cooked_114579-2429.jpg",
|
||||
imageAlt: "Foie gras maison",
|
||||
},
|
||||
id: "foie-gras", name: "Foie gras maison", price: "28€", imageSrc: "http://img.b2bpic.net/free-photo/lamb-bone-covered-with-dough-finely-cooked_114579-2429.jpg", imageAlt: "Foie gras maison"},
|
||||
{
|
||||
id: "oeufs-mayonnaise",
|
||||
name: "Œufs mayonnaise",
|
||||
price: "14€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/benedict-eggs_74190-3897.jpg",
|
||||
imageAlt: "Œufs mayonnaise",
|
||||
},
|
||||
id: "oeufs-mayonnaise", name: "Œufs mayonnaise", price: "14€", imageSrc: "http://img.b2bpic.net/free-photo/benedict-eggs_74190-3897.jpg", imageAlt: "Œufs mayonnaise"},
|
||||
{
|
||||
id: "steak-frites",
|
||||
name: "Steak frites sauce maison",
|
||||
price: "35€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-bruschetta-meat-front-view_23-2148516952.jpg",
|
||||
imageAlt: "Steak frites sauce maison",
|
||||
},
|
||||
id: "steak-frites", name: "Steak frites sauce maison", price: "35€", imageSrc: "http://img.b2bpic.net/free-photo/tasty-bruschetta-meat-front-view_23-2148516952.jpg", imageAlt: "Steak frites sauce maison"},
|
||||
{
|
||||
id: "saumon-grille",
|
||||
name: "Saumon grillé légumes",
|
||||
price: "32€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-with-vegetables-table_140725-4707.jpg",
|
||||
imageAlt: "Saumon grillé légumes",
|
||||
},
|
||||
id: "saumon-grille", name: "Saumon grillé légumes", price: "32€", imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-with-vegetables-table_140725-4707.jpg", imageAlt: "Saumon grillé légumes"},
|
||||
{
|
||||
id: "creme-brulee",
|
||||
name: "Crème brûlée",
|
||||
price: "12€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-delicious-creamy-dessert-with-red-sliced-strawberries-pink-wall-dessert-ice-cream-cream-sweet-berry-fruits_140725-53993.jpg",
|
||||
imageAlt: "Crème brûlée",
|
||||
},
|
||||
id: "creme-brulee", name: "Crème brûlée", price: "12€", imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-delicious-creamy-dessert-with-red-sliced-strawberries-pink-wall-dessert-ice-cream-cream-sweet-berry-fruits_140725-53993.jpg", imageAlt: "Crème brûlée"},
|
||||
{
|
||||
id: "boissons-vin",
|
||||
name: "Sélection de Vins & Cocktails",
|
||||
price: "À partir de 9€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-crystal-glass-with-pink-cocktails-garnished-with-toasted-marshmallow-raspberry_140725-5234.jpg",
|
||||
imageAlt: "Verres de vin et cocktails",
|
||||
},
|
||||
id: "boissons-vin", name: "Sélection de Vins & Cocktails", price: "À partir de 9€", imageSrc: "http://img.b2bpic.net/free-photo/two-crystal-glass-with-pink-cocktails-garnished-with-toasted-marshmallow-raspberry_140725-5234.jpg", imageAlt: "Verres de vin et cocktails"},
|
||||
]}
|
||||
title="Notre Menu Gastronomique"
|
||||
description="Une sélection raffinée de classiques français et de créations originales, élaborée avec des produits frais de saison pour ravir vos papilles."
|
||||
@@ -211,41 +136,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "gal-1",
|
||||
name: "Intérieur Chic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-interior-design-interior_23-2151929524.jpg",
|
||||
imageAlt: "Intérieur chic du restaurant",
|
||||
},
|
||||
id: "gal-1", name: "Intérieur Chic", price: "Gratuit", imageSrc: "http://img.b2bpic.net/free-photo/modern-interior-design-interior_23-2151929524.jpg", imageAlt: "Intérieur chic du restaurant"},
|
||||
{
|
||||
id: "gal-2",
|
||||
name: "Terrasse de Nuit",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-posing-with-laptop-street_1153-3540.jpg",
|
||||
imageAlt: "Terrasse du restaurant la nuit",
|
||||
},
|
||||
id: "gal-2", name: "Terrasse de Nuit", price: "Gratuit", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-posing-with-laptop-street_1153-3540.jpg", imageAlt: "Terrasse du restaurant la nuit"},
|
||||
{
|
||||
id: "gal-3",
|
||||
name: "Plat Gastronomique",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fish-head-with-sliced-vegetables_1304-4033.jpg",
|
||||
imageAlt: "Présentation d'un plat gastronomique",
|
||||
},
|
||||
id: "gal-3", name: "Plat Gastronomique", price: "Gratuit", imageSrc: "http://img.b2bpic.net/free-photo/fish-head-with-sliced-vegetables_1304-4033.jpg", imageAlt: "Présentation d'un plat gastronomique"},
|
||||
{
|
||||
id: "gal-4",
|
||||
name: "Ambiance Bistrot",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-serve-restaurant-outdoor-chairs_1203-4492.jpg",
|
||||
imageAlt: "Ambiance typique de bistrot parisien",
|
||||
},
|
||||
id: "gal-4", name: "Ambiance Bistrot", price: "Gratuit", imageSrc: "http://img.b2bpic.net/free-photo/modern-serve-restaurant-outdoor-chairs_1203-4492.jpg", imageAlt: "Ambiance typique de bistrot parisien"},
|
||||
{
|
||||
id: "gal-5",
|
||||
name: "Dessert Fondant",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-apple-slices-dough_23-2149452283.jpg",
|
||||
imageAlt: "Gros plan sur un dessert chocolat fondant",
|
||||
},
|
||||
id: "gal-5", name: "Dessert Fondant", price: "Gratuit", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-apple-slices-dough_23-2149452283.jpg", imageAlt: "Gros plan sur un dessert chocolat fondant"},
|
||||
{
|
||||
id: "gal-6",
|
||||
name: "Expertise Oenologique",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-wine-cellar_23-2149428768.jpg",
|
||||
imageAlt: "Sommelier présentant une bouteille de vin",
|
||||
},
|
||||
id: "gal-6", name: "Expertise Oenologique", price: "Gratuit", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-wine-cellar_23-2149428768.jpg", imageAlt: "Sommelier présentant une bouteille de vin"},
|
||||
]}
|
||||
title="Notre Galerie Photo"
|
||||
description="Explorez l'intérieur élégant, la terrasse animée et les plats exquis qui font la réputation du Bistrot de Buci. Chaque image capture l'essence de notre art de vivre."
|
||||
@@ -257,20 +158,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "adresse",
|
||||
title: "Où nous trouver ?",
|
||||
content: "Le Bistrot de Buci est situé au 6 Rue de Buci, 75006 Paris, France. Idéalement situé au cœur du quartier de Saint-Germain-des-Prés.",
|
||||
},
|
||||
id: "adresse", title: "Où nous trouver ?", content: "Le Bistrot de Buci est situé au 6 Rue de Buci, 75006 Paris, France. Idéalement situé au cœur du quartier de Saint-Germain-des-Prés."},
|
||||
{
|
||||
id: "horaires",
|
||||
title: "Quels sont nos horaires d'ouverture ?",
|
||||
content: "Nous sommes ouverts du mardi au samedi :<br/>Déjeuner : 12h00 - 14h30<br/>Dîner : 19h00 - 22h30<br/>Fermé le dimanche et le lundi.",
|
||||
},
|
||||
id: "horaires", title: "Quels sont nos horaires d'ouverture ?", content: "Nous sommes ouverts du mardi au samedi :<br/>Déjeuner : 12h00 - 14h30<br/>Dîner : 19h00 - 22h30<br/>Fermé le dimanche et le lundi."},
|
||||
{
|
||||
id: "telephone",
|
||||
title: "Comment nous contacter ?",
|
||||
content: "Vous pouvez nous joindre par téléphone au +33 1 44 41 00 35 pour toute question ou réservation. N'hésitez pas à nous appeler pendant nos heures d'ouverture.",
|
||||
},
|
||||
id: "telephone", title: "Comment nous contacter ?", content: "Vous pouvez nous joindre par téléphone au +33 1 44 41 00 35 pour toute question ou réservation. N'hésitez pas à nous appeler pendant nos heures d'ouverture."},
|
||||
]}
|
||||
sideTitle="Informations Pratiques"
|
||||
sideDescription="Nous sommes ravis de vous accueillir au Bistrot de Buci. Retrouvez ici toutes les informations nécessaires pour planifier votre visite et nous contacter."
|
||||
@@ -288,29 +180,17 @@ export default function LandingPage() {
|
||||
author="Sophie L. (Google Avis)"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg",
|
||||
alt: "Photo de Sophie L.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg", alt: "Photo de Sophie L."},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-attractive-man-closeup_657883-694.jpg",
|
||||
alt: "Photo de Jean M.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-attractive-man-closeup_657883-694.jpg", alt: "Photo de Jean M."},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151098593.jpg",
|
||||
alt: "Photo de Claire D.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151098593.jpg", alt: "Photo de Claire D."},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-successful-middle-aged-business-leader_1262-5690.jpg",
|
||||
alt: "Photo de Pierre E.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-successful-middle-aged-business-leader_1262-5690.jpg", alt: "Photo de Pierre E."},
|
||||
{
|
||||
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/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",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/group-young-people-enjoying-dinner-together_23-2148454092.jpg", alt: "Photo d'un groupe d'amis"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="opacity"
|
||||
@@ -321,21 +201,16 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
tag="Réservez Votre Table"
|
||||
tagAnimation="opacity"
|
||||
title="Vivez l'Expérience Bistrot de Buci"
|
||||
description="Pour garantir votre place et vivre un moment d'exception, contactez-nous directement. Notre équipe se fera un plaisir de vous assister pour votre réservation. Nous avons hâte de vous accueillir !"
|
||||
buttons={[
|
||||
{
|
||||
text: "📞 Appeler pour réserver",
|
||||
href: "tel:+33144410035",
|
||||
},
|
||||
text: "📞 Appeler pour réserver", href: "tel:+33144410035"},
|
||||
{
|
||||
text: "Envoyer une demande par email",
|
||||
href: "mailto:info@bistrotdebuci.com",
|
||||
},
|
||||
text: "Envoyer une demande par email", href: "mailto:info@bistrotdebuci.com"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -345,66 +220,39 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
title: "Menu", items: [
|
||||
{
|
||||
label: "Entrées",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Entrées", href: "#menu"},
|
||||
{
|
||||
label: "Plats",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Plats", href: "#menu"},
|
||||
{
|
||||
label: "Desserts",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Desserts", href: "#menu"},
|
||||
{
|
||||
label: "Boissons",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Boissons", href: "#menu"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Restaurant",
|
||||
items: [
|
||||
title: "Restaurant", items: [
|
||||
{
|
||||
label: "Notre Ambiance",
|
||||
href: "#ambiance",
|
||||
},
|
||||
label: "Notre Ambiance", href: "#ambiance"},
|
||||
{
|
||||
label: "Galerie",
|
||||
href: "#gallery",
|
||||
},
|
||||
label: "Galerie", href: "#gallery"},
|
||||
{
|
||||
label: "Avis Clients",
|
||||
href: "#testimonials",
|
||||
},
|
||||
label: "Avis Clients", href: "#testimonials"},
|
||||
{
|
||||
label: "Informations",
|
||||
href: "#infos",
|
||||
},
|
||||
label: "Informations", href: "#infos"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact & Réservation",
|
||||
items: [
|
||||
title: "Contact & Réservation", items: [
|
||||
{
|
||||
label: "Réserver une table",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Réserver une table", href: "#contact"},
|
||||
{
|
||||
label: "Nous Appeler",
|
||||
href: "tel:+33144410035",
|
||||
},
|
||||
label: "Nous Appeler", href: "tel:+33144410035"},
|
||||
{
|
||||
label: "Envoyer un Email",
|
||||
href: "mailto:info@bistrotdebuci.com",
|
||||
},
|
||||
label: "Envoyer un Email", href: "mailto:info@bistrotdebuci.com"},
|
||||
{
|
||||
label: "Localisation (Google Maps)",
|
||||
href: "https://maps.app.goo.gl/YourGoogleMapsLink",
|
||||
},
|
||||
label: "Localisation (Google Maps)", href: "https://maps.app.goo.gl/YourGoogleMapsLink"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user