|
|
|
@ -1,54 +1,42 @@ |
|
|
|
|
import React from "react"; |
|
|
|
|
import Button from "../../Button"; |
|
|
|
|
|
|
|
|
|
const AdvertisementDesign2 = () => { |
|
|
|
|
return ( |
|
|
|
|
<section className="mx-auto bg-white m-10 w-4/12 p-2"> |
|
|
|
|
<div |
|
|
|
|
className="h-56 rounded-3xl relative" |
|
|
|
|
style={{ backgroundColor: "#E3F2FF" }} |
|
|
|
|
> |
|
|
|
|
<div className="flex flex-col justify-center p-10 w-7/12"> |
|
|
|
|
<h2 className="text-lg">تبلیغات دانوینی</h2> |
|
|
|
|
<p className="text-sm text-justify leading-6 mt-2"> |
|
|
|
|
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با |
|
|
|
|
استفاده از طراحان گرافیک است. |
|
|
|
|
</p> |
|
|
|
|
<button className="rounded-lg text-sm border p-3 w-8/12 mx-auto bg-darkCrimsonBgColor text-white mt-2"> |
|
|
|
|
دانلود اپلیکیشن |
|
|
|
|
</button> |
|
|
|
|
</div> |
|
|
|
|
<div |
|
|
|
|
style={{ |
|
|
|
|
backgroundColor: "#00FFFF33", |
|
|
|
|
width: "calc(100vw / 15)", |
|
|
|
|
height: "calc(100vw / 15)", |
|
|
|
|
left: "20%", |
|
|
|
|
top: "15%", |
|
|
|
|
}} |
|
|
|
|
className="rounded-full absolute z-20 backdrop-filter backdrop-blur-md" |
|
|
|
|
></div> |
|
|
|
|
<div |
|
|
|
|
style={{ |
|
|
|
|
backgroundColor: "#6E6EEF66", |
|
|
|
|
width: "calc(100vw / 10)", |
|
|
|
|
height: "calc(100vw / 10)", |
|
|
|
|
left: "7%", |
|
|
|
|
bottom: "-15%", |
|
|
|
|
}} |
|
|
|
|
className="rounded-full absolute z-10 backdrop-filter backdrop-blur-md" |
|
|
|
|
></div> |
|
|
|
|
<div |
|
|
|
|
style={{ |
|
|
|
|
backgroundColor: "white", |
|
|
|
|
width: "calc(100vw / 12)", |
|
|
|
|
height: "calc(100vw / 12)", |
|
|
|
|
left: "0%", |
|
|
|
|
top: "10%", |
|
|
|
|
}} |
|
|
|
|
className="rounded-full absolute backdrop-filter backdrop-blur-md" |
|
|
|
|
></div> |
|
|
|
|
<div className="w-fit h-[226px] relative bg-[#E3F2FF] rounded-3xl"> |
|
|
|
|
<div className="w-8/12 flex flex-col justify-center p-10"> |
|
|
|
|
<h2 className="text-lg">تبلیغات دانوینی</h2> |
|
|
|
|
<p className="text-sm text-justify leading-6 mt-2"> |
|
|
|
|
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده |
|
|
|
|
از طراحان گرافیک است. |
|
|
|
|
</p> |
|
|
|
|
<Button |
|
|
|
|
text="دانلود اپلیکیشن" |
|
|
|
|
className="w-fit self-end p-3 bg-[#132F52] text-sm text-white border rounded-lg" |
|
|
|
|
/> |
|
|
|
|
</div> |
|
|
|
|
</section> |
|
|
|
|
<div |
|
|
|
|
style={{ |
|
|
|
|
width: "calc(100vw / 15)", |
|
|
|
|
height: "calc(100vw / 15)", |
|
|
|
|
}} |
|
|
|
|
className="bg-[#00FFFF33] absolute left-[20%] top-[15%] rounded-full backdrop-filter backdrop-blur-md z-20" |
|
|
|
|
></div> |
|
|
|
|
<div |
|
|
|
|
style={{ |
|
|
|
|
width: "calc(100vw / 10)", |
|
|
|
|
height: "calc(100vw / 10)", |
|
|
|
|
}} |
|
|
|
|
className="bg-[#6E6EEF66] absolute left-[4%] top-[7%] rounded-full backdrop-filter backdrop-blur-md z-10" |
|
|
|
|
></div> |
|
|
|
|
<div |
|
|
|
|
style={{ |
|
|
|
|
width: "calc(100vw / 12)", |
|
|
|
|
height: "calc(100vw / 12)", |
|
|
|
|
}} |
|
|
|
|
className="bg-white absolute left-[14%] bottom-[2%] rounded-full backdrop-filter backdrop-blur-md" |
|
|
|
|
></div> |
|
|
|
|
</div> |
|
|
|
|
); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|