diff --git a/src/components/sections/product/ProductCardOne.tsx b/src/components/sections/product/ProductCardOne.tsx index 655b27d..3d604c2 100644 --- a/src/components/sections/product/ProductCardOne.tsx +++ b/src/components/sections/product/ProductCardOne.tsx @@ -21,6 +21,8 @@ type ProductCard = { onFavorite?: () => void; onProductClick?: () => void; isFavorited?: boolean; + duration: string; + difficulty: string; }; interface ProductCardItemProps { @@ -80,6 +82,11 @@ const ProductCardItem = memo(({ + +
+

{product.duration}

+

{product.difficulty}

+
); });