This commit is contained in:
hamid zarghami
2025-08-10 13:16:56 +03:30
parent 6fcb8a6904
commit 1859d0b2c9
9 changed files with 777 additions and 3 deletions
+1 -3
View File
@@ -4,7 +4,7 @@ import { FC } from 'react'
const ProductCard: FC = () => {
return (
<div className='bg-white rounded-[40px] p-6 w-full min-w-[280px] max-w-[280px] mx-auto'>
<div className='bg-white rounded-[40px] p-6 w-full max-w-[280px] mx-auto shadow'>
<div className='flex justify-center'>
<Image
src={`https://dkstatics-public.digikala.com/digikala-products/40026b18c2b053ac4a68c3288556dc899a77aecd_1727277566.jpg?x-oss-process=image/resize,m_lfit,h_300,w_300/format,webp/quality,q_80`}
@@ -35,8 +35,6 @@ const ProductCard: FC = () => {
<div className='flex justify-end'>
<Heart size={20} color='#000' />
</div>
</div>
)
}