diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index ff1f85f..f4a4fa1 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -11,6 +11,7 @@ import { useProductDetail } from "@/hooks/useProductDetail"; import { useCart } from "@/hooks/useCart"; import { useCheckout } from "@/hooks/useCheckout"; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import Link from 'next/link'; interface ProductPageProps { params: Promise<{ id: string }>; @@ -92,7 +93,8 @@ function ProductPageContent({ params }: ProductPageProps) {