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

This commit is contained in:
2026-02-20 11:53:54 +00:00
parent 7f40a4082f
commit 572c167e95

View File

@@ -88,8 +88,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Products", id: "products" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
{ name: "Contact", id: "contact" }
]}
brandName="LikeYou"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -165,8 +164,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Products", id: "products" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
{ name: "Contact", id: "contact" }
]}
brandName="LikeYou"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -249,8 +247,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ name: "Products", id: "products" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
{ name: "Contact", id: "contact" }
]}
brandName="LikeYou"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -335,4 +332,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}