|
|
|
@ -5,8 +5,8 @@ const AdvertisementDesign3 = ({ features }) => { |
|
|
|
|
return ( |
|
|
|
|
<div className="relative bg-[#E3F2FF] rounded-3xl"> |
|
|
|
|
<div className="flex flex-col justify-center p-10"> |
|
|
|
|
<h2 className="text-lg text-[#132F52] z-50">تبلیغات دانوینی</h2> |
|
|
|
|
<p className="text-sm text-justify leading-6 mt-2 text-[#132F52] z-50"> |
|
|
|
|
<h2 className="text-lg text-primaryText z-50">تبلیغات دانوینی</h2> |
|
|
|
|
<p className="text-sm text-justify leading-6 mt-2 text-primaryText z-50"> |
|
|
|
|
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده |
|
|
|
|
از طراحان گرافیک است. |
|
|
|
|
</p> |
|
|
|
@ -14,7 +14,7 @@ const AdvertisementDesign3 = ({ features }) => { |
|
|
|
|
{features.map((feature, i) => ( |
|
|
|
|
<div className="flex flex-row items-center mt-2"> |
|
|
|
|
<img src={feature.icon} alt="icon" className="w-6 z-50" /> |
|
|
|
|
<p className="mr-2 text-sm text-justify text-[#132F52] leading-6 z-50"> |
|
|
|
|
<p className="mr-2 text-sm text-justify text-primaryText leading-6 z-50"> |
|
|
|
|
{feature.title} |
|
|
|
|
</p> |
|
|
|
|
</div> |
|
|
|
@ -45,11 +45,11 @@ const AdvertisementDesign3 = ({ features }) => { |
|
|
|
|
<div className="absolute flex flex-row gap-x-4 bottom-5 left-10"> |
|
|
|
|
<Button |
|
|
|
|
text="تماس با ما" |
|
|
|
|
className="text-sm text-blue-500 border-2 border-blue-500 rounded p-2 " |
|
|
|
|
className="text-sm text-primaryText border-2 border-primary rounded p-2 hover:bg-primary" |
|
|
|
|
/> |
|
|
|
|
<Button |
|
|
|
|
text="به سلامت" |
|
|
|
|
className="bg-blue-500 text-sm text-white border-2 border-blue-500 rounded p-2 " |
|
|
|
|
className="bg-primary text-sm text-primaryText border-2 border-primary rounded p-2 hover:bg-primaryDark hover:border-primaryDark" |
|
|
|
|
/> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|