From 25c1c9a290415a9b5ae9abec4bbe1668d32ffe12 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 12:47:07 +0000 Subject: [PATCH 1/2] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 0c61570..d83fb78 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -89,8 +89,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Collections", id: "products" }, { name: "About", id: "about" }, { name: "Why Giina", id: "features" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -166,8 +165,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Collections", id: "products" }, { name: "About", id: "about" }, { name: "Why Giina", id: "features" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -250,8 +248,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "Collections", id: "products" }, { name: "About", id: "about" }, { name: "Why Giina", id: "features" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1 From cc3de9fdcecedc52c48f2fca1c792072a5302edd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 12:47:07 +0000 Subject: [PATCH 2/2] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 3da189c..da880bb 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -42,8 +42,7 @@ export default function ShopPage() { { name: "Collections", id: "products" }, { name: "About", id: "about" }, { name: "Why Giina", id: "features" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -118,8 +117,7 @@ export default function ShopPage() { { name: "Collections", id: "products" }, { name: "About", id: "about" }, { name: "Why Giina", id: "features" }, - { name: "Contact", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Contact", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1