pixel perfect

This commit is contained in:
hamid zarghami
2025-04-23 15:48:22 +03:30
parent 22844c71f1
commit 82c5dbdffa
11 changed files with 89 additions and 16 deletions
+4 -4
View File
@@ -27,13 +27,13 @@ const HeroSection: FC = () => {
/>
<div className='absolute flex items-center z-1 top-0 left-0 w-full h-full bg-black/10 rounded-4xl'>
<div className='max-w-maxWidth w-full mx-auto px-10 xl:text-4xl text-lg text-white'>
<p>{item.title}</p>
<p className='xl:mt-5 font-bold'>{item.description}</p>
<div className='max-w-maxWidth flex flex-col mt-1 xl:mt-0 xl:items-start items-center w-full mx-auto px-10 xl:text-4xl text-lg text-white'>
<p className='xl:text-lg text-sm'>{item.title}</p>
<p className='xl:mt-5 mt-2 xl:text-2xl text-sm font-bold'>{item.description}</p>
<Link href={item.link}>
<Button
className='xl:mt-12 mt-5 !w-fit px-10 bg-white !text-black'
className='xl:mt-5 mt-2 !w-fit xl:px-10 px-5 h-8 xl:h-10 bg-white !text-black'
label='بیشتر بدانید'
/>
</Link>