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" />
@@ -105,9 +103,6 @@ function ProductPageContent({ params }: ProductPageProps) {

Loading product...

- ); @@ -136,7 +131,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" />
@@ -152,9 +146,6 @@ function ProductPageContent({ params }: ProductPageProps) {
- ); @@ -182,7 +173,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" />
@@ -221,9 +211,6 @@ function ProductPageContent({ params }: ProductPageProps) { ]} />
- );