|
|
|
@ -11,7 +11,11 @@ const AddToCartCard = ({ |
|
|
|
|
sendingTime, |
|
|
|
|
button, |
|
|
|
|
price, |
|
|
|
|
profit |
|
|
|
|
profit, |
|
|
|
|
showProduct, |
|
|
|
|
productName, |
|
|
|
|
productImg, |
|
|
|
|
productCat |
|
|
|
|
}) =>{ |
|
|
|
|
const specialities = [ |
|
|
|
|
{ |
|
|
|
@ -28,7 +32,16 @@ const AddToCartCard = ({ |
|
|
|
|
} |
|
|
|
|
]; |
|
|
|
|
return( |
|
|
|
|
<div className="felx flex-col bg-grayF7 p-4 pt-0 w-full mx-4 items-center justify-center"> |
|
|
|
|
<div className="felx flex-col bg-grayF7 p-4 pt-0 w-full mx-4 items-center justify-center "> |
|
|
|
|
{ |
|
|
|
|
showProduct && <div className="flex w-full max-w-8 overflow-hidden items-center py-4 m-0 justify-center"> |
|
|
|
|
<img src={productImg} style={{maxWidth:'100px'}} className=" bg-grayF4 py-2 px-4 bg-grayF4 rounded ml-4" /> |
|
|
|
|
<div className="text-sm">
|
|
|
|
|
<h1 className="text-sm">{productName}</h1> |
|
|
|
|
<p className=" text-xs pt-2 text-blueC0">{productCat}</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
} |
|
|
|
|
{specialities.map((item, index) => ( |
|
|
|
|
<div className="flex items-center p-2 w-full border-0 border-b border-solid border-gray-300"> |
|
|
|
|
{item.icon && <img src={item.icon} className="pl-3" />} |
|
|
|
|