From 577acfee0a05d4584ac3f074ee26fa9a716d9616 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 12:21:02 +0000 Subject: [PATCH] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 89e3162..a1a7c59 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -10,6 +10,7 @@ import ProductCart from "@/components/ecommerce/cart/ProductCart"; import { useProductDetail } from "@/hooks/useProductDetail"; import { useCart } from "@/hooks/useCart"; import { useCheckout } from "@/hooks/useCheckout"; +import Link from 'next/link'; interface ProductPageProps { params: Promise<{ id: string }>; @@ -76,18 +77,21 @@ function ProductPageContent({ params }: ProductPageProps) { const navItems = [ { name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, + { name: "Blog", id: "/blog" }, ]; const navbarComponent = ( -