parent
7f1edaa683
commit
0c39960fff
7 changed files with 74 additions and 3 deletions
After Width: | Height: | Size: 143 KiB |
@ -0,0 +1,35 @@ |
|||||||
|
import React from "react"; |
||||||
|
|
||||||
|
import leftArrow from "./white-left-arrow.svg"; |
||||||
|
import General from "./General.png"; |
||||||
|
|
||||||
|
const Offer = () => { |
||||||
|
return ( |
||||||
|
<section |
||||||
|
className="my-10 w-7/12 mx-auto rounded-2xl p-5" |
||||||
|
style={{ backgroundColor: "#ef3a4f" }} |
||||||
|
> |
||||||
|
<div className="bg-orange-300"> |
||||||
|
{/* right */} |
||||||
|
<div className="flex flex-col items-center justify-center bg-yellow-300"> |
||||||
|
<span className="text-base text-center text-white font-bold"> |
||||||
|
پیشنهاد |
||||||
|
<br /> |
||||||
|
شگفت |
||||||
|
<br /> |
||||||
|
انگیز |
||||||
|
</span> |
||||||
|
<img src={General} className="w-28 my-2" /> |
||||||
|
<button className="text-sm text-white flex flex-row items-center"> |
||||||
|
مشاهده همه |
||||||
|
<img src={leftArrow} className="w-3 mr-1" /> |
||||||
|
</button> |
||||||
|
</div> |
||||||
|
{/* left */} |
||||||
|
<div className="flex-1 bg-blue-300"></div> |
||||||
|
</div> |
||||||
|
</section> |
||||||
|
); |
||||||
|
}; |
||||||
|
|
||||||
|
export default Offer; |
After Width: | Height: | Size: 749 B |
After Width: | Height: | Size: 587 B |
After Width: | Height: | Size: 655 B |
Loading…
Reference in new issue