stats + services

This commit is contained in:
hamid zarghami
2026-02-23 10:22:44 +03:30
parent fd43a86e1b
commit 4f1884d98b
7 changed files with 81 additions and 57 deletions
+3 -2
View File
@@ -1,10 +1,11 @@
import { type FC } from 'react'
import { type ProductType } from '@/pages/request/type/Types'
const ServiceItem: FC = () => {
const ServiceItem: FC<{ product: ProductType }> = ({ product }) => {
return (
<div>
<div className='size-20 rounded-full bg-gray-200 border-[3px] border-primary'>
<img src={product.images?.[0]} alt={product.title} className='w-full h-full object-cover' />
</div>
</div>
)