Update src/app/gallery/page.tsx

This commit is contained in:
2026-06-03 15:29:55 +00:00
parent 1f264ef3f8
commit 22f6ef7e64

View File

@@ -25,16 +25,20 @@ export default function GalleryPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Accueil", id: "/"},
{ name: "À Propos", id: "/about"},
{ name: "Services", id: "/services"},
{
name: "À Propos", id: "/about"},
{
name: "Services", id: "/services"},
{ name: "Galerie", id: "/gallery"},
{ name: "Témoignages", id: "/#testimonials"},
{ name: "FAQ", id: "/#faq"},
{ name: "Contact", id: "/#contact"},
{ name: "Contact", id: "/contact"},
{
name: "Réserver", id: "/booking"}
]}
brandName="Salle Évasion"
button={{
text: "Demander un devis", href: "/#contact"}}
text: "Demander un devis", href: "/booking"}}
/>
</div>
@@ -65,13 +69,15 @@ export default function GalleryPage() {
{ label: "Accueil", href: "/"},
{ label: "À Propos", href: "/about"},
{ label: "Services", href: "/services"},
{ label: "Galerie", href: "/gallery"}
{ label: "Galerie", href: "/gallery"},
{
label: "Réserver", href: "/booking"}
]
},
{
title: "Assistance", items: [
{ label: "FAQ", href: "/#faq"},
{ label: "Contact", href: "/#contact"},
{ label: "Contact", href: "/contact"},
{ label: "Politique de Confidentialité", href: "#"},
{ label: "Conditions Générales", href: "#"}
]