ref product section

This commit is contained in:
2026-07-21 11:20:07 +03:30
parent fff5cd9146
commit 9f006b36ab
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ import { type FC } from 'react'
const ServiceItem: FC<{ product: ProductType }> = ({ product }) => {
return (
<div className='flex w-[88px] shrink-0 snap-start flex-col items-center gap-2 md:w-auto'>
<div className='size-16 overflow-hidden rounded-full border-[3px] border-primary bg-gray-200 md:size-20'>
<div className='flex w-[88px] shrink-0 snap-start flex-col items-center gap-2'>
<div className='size-20 overflow-hidden rounded-full border-[3px] border-primary bg-gray-200'>
{product.images?.[0] ? (
<PresignedImage
src={product.images[0]}