h1 to h2 + ...

This commit is contained in:
hamid zarghami
2025-08-21 08:37:31 +03:30
parent 8d219b8d12
commit fee58d4d39
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ const DanakSuggestedService: FC = () => {
{ {
data?.data?.danakServices?.map((item) => { data?.data?.danakServices?.map((item) => {
return ( return (
<ServiceItem key={item.id} item={item} /> <ServiceItem isShort key={item.id} item={item} />
) )
}) })
} }
@@ -40,9 +40,9 @@ const ServiceHeader: FC<Props> = (props: Props) => {
<Image alt='icon' width={70} height={70} src={data?.icon} className='w-full h-full rounded-xl' /> <Image alt='icon' width={70} height={70} src={data?.icon} className='w-full h-full rounded-xl' />
</div> </div>
<div> <div>
<h1> <h2>
{data?.name} {data?.name}
</h1> </h2>
<p className='text-description mt-1 text-[11px]'> <p className='text-description mt-1 text-[11px]'>
{data?.description} {data?.description}