You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

49 lines
1.7 KiB

import React from "react";
import Button from "../../Button";
const AdvertisementDesign1 = () => {
return (
<div className="w-[320px] h-[396px] bg-[#E3F2FF] rounded-3xl relative overflow-hidden">
<div
style={{
width: "calc(100vw / 10)",
height: "calc(100vw / 10)",
left: "20%",
top: "15%",
}}
className="bg-blue-200 bg-opacity-30 absolute rounded-full backdrop-filter backdrop-blur-md z-30"
></div>
<div
style={{
width: "calc(100vw / 7)",
height: "calc(100vw / 7)",
right: "25%",
bottom: "4%",
}}
className="bg-purple-200 bg-opacity-30 absolute rounded-full backdrop-filter backdrop-blur-md"
></div>
<div
style={{
width: "calc(100vw / 8)",
height: "calc(100vw / 8)",
right: "3%",
top: "15%",
}}
className="bg-green-200 bg-opacity-40 absolute rounded-full backdrop-filter backdrop-blur-md"
></div>
<div className="w-full h-full flex flex-col justify-center p-10 absolute right-0 bottom-0 z-50">
<h2 className="text-lg">تبلیغات دانوینی</h2>
<p className="mt-2 text-sm text-justify leading-6">
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده
از طراحان گرافیک است.
</p>
</div>
<Button
text="دانلود اپلیکیشن"
className="p-3 text-base rounded-sm border absolute left-1/2 bottom-0 transform -translate-x-1/2 -translate-y-1/2 z-50"
/>
</div>
);
};
export default AdvertisementDesign1;