service images

This commit is contained in:
hamid zarghami
2025-04-23 21:40:30 +03:30
parent 6d3278d08f
commit a3a15f742a
@@ -22,7 +22,7 @@ const ServiceImages: FC<Props> = ({ images }) => {
{
images.map((item) => {
return (
<SwiperSlide key={item.id} className='max-w-[38%]' style={SWIPER_SLIDE_STYLE}>
<SwiperSlide key={item.id} className='xl:max-w-[38%] max-w-[80%]' style={SWIPER_SLIDE_STYLE}>
<div className='bg-white bg-opacity-50 w-full p-2 rounded-2xl'>
<img src={item.imageUrl} className='w-full rounded-2xl' />
</div>