mango-token-sale/components/HeroSectionRedeem.tsx

26 lines
932 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 (
<section className="max-w-5xl mx-auto px-4">
<div className="flex flex-col md:flex-row lg:flex-row m-10 mx-auto gap-6 items-center">
<div className="flex-1 px-4">
<h2 className="mb-4 text-3xl md:text-5xl lg:text-5xl text-white font-bold font-heading">
That&apos;s a wrap! Your <GradientText>MNGO</GradientText> is ready.
2021-07-24 06:19:16 -07:00
</h2>
2021-08-10 05:18:44 -07:00
<p className="mb-2 text-xl text-white text-opacity-70">
Thank you to everyone who participated in the sale, you are now
valued members of the Mango DAO. Let&apos;s shape the future of
Mango together.
2021-07-24 06:19:16 -07:00
</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