mango-token-sale/components/HeroSectionRedeem.tsx

27 lines
855 B
TypeScript
Raw Permalink Normal View History

2021-07-22 22:26:27 -07:00
import GradientText from './GradientText'
2021-07-24 06:19:16 -07:00
import RedeemModal from './RedeemModal'
2021-07-22 23:14:56 -07:00
const HeroSectionRedeem = () => {
2021-07-22 22:26:27 -07:00
return (
2021-07-22 23:14:56 -07:00
<section className="max-w-7xl mx-auto px-10">
2021-07-24 06:19:16 -07:00
<div className="flex flex-col md:flex-row lg:flex-row m-10 mx-auto">
<div className="flex-1">
<h2 className="my-5 text-3xl lg:text-5xl text-white font-bold font-heading">
The event has ended. <br />
Its time to redeem your&nbsp;
<GradientText>$MNGO</GradientText>
</h2>
<p className="lg:text-xl">
Thank you for your contributions, soon you will be able to help
decide the future of Mango.
</p>
</div>
<div className="flex-1 my-5 z-10">
<RedeemModal />
</div>
2021-07-22 22:26:27 -07:00
</div>
</section>
)
}
2021-07-22 23:14:56 -07:00
export default HeroSectionRedeem