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

This commit is contained in:
2026-02-14 09:13:17 +00:00
parent 240b1439ba
commit fc31f736b3

View File

@@ -85,7 +85,7 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleCentered
brandName="Luxe Hotel"
navItems={[
{ name: "Home", id: "/" },
{ name: "Home", id: "hero" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -118,7 +118,7 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleCentered
brandName="Luxe Hotel"
navItems={[
{ name: "Home", id: "/" },
{ name: "Home", id: "hero" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -158,7 +158,7 @@ export default function ProductPage({ params }: ProductPageProps) {
<NavbarStyleCentered
brandName="Luxe Hotel"
navItems={[
{ name: "Home", id: "/" },
{ name: "Home", id: "hero" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -205,7 +205,7 @@ export default function ProductPage({ params }: ProductPageProps) {
columns={[
{
title: "Navigate", items: [
{ label: "Home", href: "/" },
{ label: "Home", href: "hero" },
{ label: "Shop", href: "/shop" }
]
},
@@ -238,4 +238,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}