Update src/app/reservation/page.tsx
This commit is contained in:
@@ -13,8 +13,8 @@ export default function ReservationPage() {
|
||||
const navItems = [
|
||||
{ name: "Accueil", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "À Propos", id: "about" },
|
||||
{ name: "Galerie", id: "gallery" },
|
||||
{ name: "À Propos", id: "/about" },
|
||||
{ name: "Galerie", id: "/gallery" },
|
||||
{ name: "Réservation", id: "/reservation" },
|
||||
];
|
||||
|
||||
@@ -23,13 +23,13 @@ export default function ReservationPage() {
|
||||
items: [
|
||||
{ label: "Accueil", href: "/" },
|
||||
{ label: "Menu", href: "/menu" },
|
||||
{ label: "À Propos", href: "#about" },
|
||||
{ label: "À Propos", href: "/about" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Réservation", href: "/reservation" },
|
||||
{ label: "Galerie", href: "#gallery" },
|
||||
{ label: "Galerie", href: "/gallery" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user