From 6679140a4e300db7a4f679a2b63142fb769bb779 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 14:27:13 +0000 Subject: [PATCH 1/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 30 ++++++++++-------------------- 1 file changed, 10 insertions(+), 20 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 877e3b5..a12267a 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -30,8 +30,7 @@ export default function ContactPage() { ? "/gallery" : item.id === "reservations" ? "/reservations" - : "/contact", - })); + : "/contact"})); return ( -- 2.49.1 From 6c0753153f68f4227abfb08269a67b51a4a1d11e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 14:27:14 +0000 Subject: [PATCH 2/5] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 117 ++++++++++----------------------------- 1 file changed, 28 insertions(+), 89 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index a3263f0..ab744ff 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -21,17 +21,10 @@ export default function GalleryPage() { const navItemsWithRoutes = navItems.map((item) => { const routeMap: Record = { - home: "/", - about: "/", - menu: "/", - gallery: "/gallery", - reservations: "/reservations", - contact: "/", - }; + home: "/", about: "/", menu: "/", gallery: "/gallery", reservations: "/reservations", contact: "/"}; return { ...item, - href: routeMap[item.id] || "/", - }; + href: routeMap[item.id] || "/"}; }); return ( @@ -50,7 +43,7 @@ export default function GalleryPage() {