fix bug design

This commit is contained in:
hamid zarghami
2025-04-23 09:57:53 +03:30
parent 452a709273
commit 01cb9b2781
11 changed files with 119 additions and 77 deletions
+13 -8
View File
@@ -1,6 +1,7 @@
import Button from '@/components/Button'
import InfoBox from '@/components/InfoBox'
import { DocumentCode, FavoriteChart } from 'iconsax-react'
import Link from 'next/link'
import { FC } from 'react'
const Collaboration: FC = () => {
@@ -17,14 +18,18 @@ const Collaboration: FC = () => {
</p>
<div className='flex justify-center xl:justify-start gap-2 mt-10'>
<Button
label='توسعه دهندگان'
className='w-fit px-5 whitespace-nowrap'
/>
<Button
label='نمایندگان'
className='w-fit px-5 bg-transparent border border-black text-black whitespace-nowrap'
/>
<Link href={'/developers'}>
<Button
label='توسعه دهندگان'
className='w-fit px-5 whitespace-nowrap'
/>
</Link>
<Link href={'/representatives'}>
<Button
label='نمایندگان'
className='w-fit px-5 bg-transparent border border-black text-black whitespace-nowrap'
/>
</Link>
</div>
</div>