Merge version_2 into main #1
@@ -21,11 +21,11 @@ export default function AboutPage() {
|
||||
<NavbarStyleApple
|
||||
brandName="La Parrilla"
|
||||
navItems={[
|
||||
{ name: "Accueil", id: "accueil" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "À propos", id: "a-propos" },
|
||||
{ name: "Avis Clients", id: "avis-clients" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Accueil", href: "/" },
|
||||
{ name: "Menu", href: "/menu" },
|
||||
{ name: "À propos", href: "/about" },
|
||||
{ name: "Avis Clients", href: "/testimonials" },
|
||||
{ name: "Contact", href: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -21,11 +21,11 @@ export default function ContactPage() {
|
||||
<NavbarStyleApple
|
||||
brandName="La Parrilla"
|
||||
navItems={[
|
||||
{ name: "Accueil", id: "accueil" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "À propos", id: "a-propos" },
|
||||
{ name: "Avis Clients", id: "avis-clients" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Accueil", href: "/" },
|
||||
{ name: "Menu", href: "/menu" },
|
||||
{ name: "À propos", href: "/about" },
|
||||
{ name: "Avis Clients", href: "/testimonials" },
|
||||
{ name: "Contact", href: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
@@ -21,18 +22,32 @@ export default function MenuPage() {
|
||||
<NavbarStyleApple
|
||||
brandName="La Parrilla"
|
||||
navItems={[
|
||||
{ name: "Accueil", id: "accueil" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "À propos", id: "a-propos" },
|
||||
{ name: "Avis Clients", id: "avis-clients" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Accueil", href: "/" },
|
||||
{ name: "Menu", href: "/menu" },
|
||||
{ name: "À propos", href: "/about" },
|
||||
{ name: "Avis Clients", href: "/testimonials" },
|
||||
{ name: "Contact", href: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
{/*
|
||||
Section registry was empty, so no sections could be generated for this page.
|
||||
This page should ideally contain 3-4 sections relevant to the menu, such as menu categories or special offers.
|
||||
*/}
|
||||
|
||||
<div id="menu-items" data-section="menu-items">
|
||||
<ProductCardFour
|
||||
title="Notre Menu Gourmand"
|
||||
description="Découvrez nos plats signatures, préparés avec passion et des ingrédients frais de saison."
|
||||
products={[
|
||||
{ id: "1", name: "Steak Frites", price: "24.99€", variant: "Viande", imageSrc: "https://images.unsplash.com/photo-1546069901-ba9599a7e63c?ixlib=rb-4.0.3&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&h=600&fit=crop&ixid=Mnw3NDAyNnwwfDF8YWxsfDF8fHx8fHwyfHwxNjg2NTk2ODkw", imageAlt: "Steak Frites" },
|
||||
{ id: "2", name: "Salade César", price: "14.50€", variant: "Végétarien", imageSrc: "https://images.unsplash.com/photo-1512621776951-a579b52cdb7f?ixlib=rb-4.0.3&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&h=600&fit=crop&ixid=Mnw3NDAyNnwwfDF8YWxsfDJ8fHx8fHwyfHwxNjg2NTk2ODkw", imageAlt: "Salade César" },
|
||||
{ id: "3", name: "Pâtes Carbonara", price: "18.00€", variant: "Pâtes", imageSrc: "https://images.unsplash.com/photo-1588147701103-515a6b7d52f6?ixlib=rb-4.0.3&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&h=600&fit=crop&ixid=Mnw3NDAyNnwwfDF8YWxsfDN8fHx8fHwyfHwxNjg2NTk2ODkw", imageAlt: "Pâtes Carbonara" },
|
||||
{ id: "4", name: "Poisson Grillé", price: "21.00€", variant: "Poisson", imageSrc: "https://images.unsplash.com/photo-1563805072083-d51e70d473b6?ixlib=rb-4.0.3&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&h=600&fit=crop&ixid=Mnw3NDAyNnwwfDF8YWxsfDR8fHx8fHwyfHwxNjg2NTk2ODkw", imageAlt: "Poisson Grillé" },
|
||||
{ id: "5", name: "Tarte au Citron", price: "8.50€", variant: "Dessert", imageSrc: "https://images.unsplash.com/photo-1549419161-0113f966144e?ixlib=rb-4.0.3&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=800&h=600&fit=crop&ixid=Mnw3NDAyNnwwfDF8YWxsfDV8fHx8fHwyfHwxNjg2NTk2ODkw", imageAlt: "Tarte au Citron" }
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -21,11 +21,11 @@ export default function HomePage() {
|
||||
<NavbarStyleApple
|
||||
brandName="La Parrilla"
|
||||
navItems={[
|
||||
{ name: "Accueil", id: "accueil" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "À propos", id: "a-propos" },
|
||||
{ name: "Avis Clients", id: "avis-clients" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Accueil", href: "/" },
|
||||
{ name: "Menu", href: "/menu" },
|
||||
{ name: "À propos", href: "/about" },
|
||||
{ name: "Avis Clients", href: "/testimonials" },
|
||||
{ name: "Contact", href: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
"use client";
|
||||
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
import { ThemeProvider } => from '@/providers/themeProvider/ThemeProvider';
|
||||
|
||||
export default function TestimonialsPage() {
|
||||
return (
|
||||
@@ -21,11 +21,11 @@ export default function TestimonialsPage() {
|
||||
<NavbarStyleApple
|
||||
brandName="La Parrilla"
|
||||
navItems={[
|
||||
{ name: "Accueil", id: "accueil" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "À propos", id: "a-propos" },
|
||||
{ name: "Avis Clients", id: "avis-clients" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Accueil", href: "/" },
|
||||
{ name: "Menu", href: "/menu" },
|
||||
{ name: "À propos", href: "/about" },
|
||||
{ name: "Avis Clients", href: "/testimonials" },
|
||||
{ name: "Contact", href: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user