diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index a23fba9..57b36cb 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -10,7 +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 FooterCard from '@/components/sections/footer/Footer/FooterCard'; +import FooterCard from '@/components/sections/footer/FooterCard'; import { Twitter, Linkedin, Instagram } from 'lucide-react'; interface ProductPageProps { @@ -94,7 +94,6 @@ function ProductPageContent({ params }: ProductPageProps) { 0 ? variants : undefined} quantity={quantityVariant} - ribbon={meta.ribbon} - inventoryStatus={meta.inventoryStatus} - inventoryQuantity={meta.inventoryQuantity} - sku={meta.sku} buttons={[ { text: "Add To Cart", onClick: handleAddToCart }, { text: "Buy Now", onClick: handleBuyNow }, diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index b117ef2..02e0974 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -61,7 +61,6 @@ export default function ShopPage() {