Update src/app/shop/[id]/page.tsx

This commit is contained in:
2026-02-23 15:12:39 +00:00
parent bde102f7cc
commit 292c1915b8

View File

@@ -37,8 +37,8 @@ function ProductDetailContent({ id }: { id: string }) {
return (
<div className="grid grid-cols-1 lg:grid-cols-2 gap-12 py-12 px-4">
<ProductDetailCard product={product} onAddToCart={handleAddToCart} />
<ProductCart product={product} onAddToCart={handleAddToCart} />
<ProductDetailCard />
<ProductCart />
</div>
);
}