Update src/app/shop/[id]/page.tsx

This commit is contained in:
2026-02-15 20:31:48 +00:00
parent 786cffa313
commit 00254183cc

View File

@@ -86,7 +86,10 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="Sababa Kitchen"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "About", id: "about" },
{ name: "Menu", id: "/menu" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
]}
bottomLeftText="Tel Aviv, Israel"
bottomRightText="reservations@sababa.com"
@@ -102,23 +105,25 @@ export default function ProductPage({ params }: ProductPageProps) {
{
title: "Navigate", items: [
{ label: "Home", href: "/" },
{ label: "Shop", href: "/shop" }
{ label: "About", href: "about" },
{ label: "Menu", href: "/menu" },
{ label: "Team", href: "team" }
]
},
{
title: "Contact", items: [
{ label: "Reservations", href: "tel:+972-3-123-4567" },
{ label: "Email", href: "mailto:reservations@sababa.com" },
{ label: "Location", href: "/contacts" },
{ label: "Hours", href: "/contacts" }
{ label: "Location", href: "#" },
{ label: "Hours", href: "#" }
]
},
{
title: "Discover", items: [
{ label: "Our Story", href: "/" },
{ label: "Chef's Menu", href: "/" },
{ label: "Events", href: "/contacts" },
{ label: "Catering", href: "/contacts" }
{ label: "Our Story", href: "about" },
{ label: "Chef's Menu", href: "/menu" },
{ label: "Events", href: "#" },
{ label: "Catering", href: "#" }
]
}
]}
@@ -151,7 +156,10 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="Sababa Kitchen"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "About", id: "about" },
{ name: "Menu", id: "/menu" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
]}
bottomLeftText="Tel Aviv, Israel"
bottomRightText="reservations@sababa.com"
@@ -175,23 +183,25 @@ export default function ProductPage({ params }: ProductPageProps) {
{
title: "Navigate", items: [
{ label: "Home", href: "/" },
{ label: "Shop", href: "/shop" }
{ label: "About", href: "about" },
{ label: "Menu", href: "/menu" },
{ label: "Team", href: "team" }
]
},
{
title: "Contact", items: [
{ label: "Reservations", href: "tel:+972-3-123-4567" },
{ label: "Email", href: "mailto:reservations@sababa.com" },
{ label: "Location", href: "/contacts" },
{ label: "Hours", href: "/contacts" }
{ label: "Location", href: "#" },
{ label: "Hours", href: "#" }
]
},
{
title: "Discover", items: [
{ label: "Our Story", href: "/" },
{ label: "Chef's Menu", href: "/" },
{ label: "Events", href: "/contacts" },
{ label: "Catering", href: "/contacts" }
{ label: "Our Story", href: "about" },
{ label: "Chef's Menu", href: "/menu" },
{ label: "Events", href: "#" },
{ label: "Catering", href: "#" }
]
}
]}
@@ -223,7 +233,10 @@ export default function ProductPage({ params }: ProductPageProps) {
brandName="Sababa Kitchen"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "About", id: "about" },
{ name: "Menu", id: "/menu" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
]}
bottomLeftText="Tel Aviv, Israel"
bottomRightText="reservations@sababa.com"
@@ -272,23 +285,25 @@ export default function ProductPage({ params }: ProductPageProps) {
{
title: "Navigate", items: [
{ label: "Home", href: "/" },
{ label: "Shop", href: "/shop" }
{ label: "About", href: "about" },
{ label: "Menu", href: "/menu" },
{ label: "Team", href: "team" }
]
},
{
title: "Contact", items: [
{ label: "Reservations", href: "tel:+972-3-123-4567" },
{ label: "Email", href: "mailto:reservations@sababa.com" },
{ label: "Location", href: "/contacts" },
{ label: "Hours", href: "/contacts" }
{ label: "Location", href: "#" },
{ label: "Hours", href: "#" }
]
},
{
title: "Discover", items: [
{ label: "Our Story", href: "/" },
{ label: "Chef's Menu", href: "/" },
{ label: "Events", href: "/contacts" },
{ label: "Catering", href: "/contacts" }
{ label: "Our Story", href: "about" },
{ label: "Chef's Menu", href: "/menu" },
{ label: "Events", href: "#" },
{ label: "Catering", href: "#" }
]
}
]}