diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index fcca7cc..ace2518 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -10,7 +10,6 @@ import ProductCart from "@/components/ecommerce/cart/ProductCart"; import { useProductDetail } from "@/hooks/useProductDetail"; import { useCart } from "@/hooks/useCart"; import { useCheckout } from "@/hooks/useCheckout"; -import Footer from "@/components/footer/Footer"; // Assuming a generic footer component interface ProductPageProps { params: Promise<{ id: string }>; @@ -97,7 +96,6 @@ function ProductPageContent({ params }: ProductPageProps) { buttonClassName="shadow-lg" navItemClassName="text-foreground/80 hover:text-foreground" className="backdrop-blur-sm bg-card/70" - navItemsAnimation="background-highlight" />
Loading product...