mango-token-sale/pages/RedeemPage.tsx

30 lines
909 B
TypeScript
Raw Normal View History

import RedeemModal from '../components/RedeemModal'
2021-07-12 17:59:53 -07:00
import GradientText from '../components/GradientText'
2021-07-22 22:02:04 -07:00
import FooterSection from '../components/FooterSection'
const RedeemPage = () => {
return (
2021-07-22 22:02:04 -07:00
<>
2021-07-13 02:16:05 -07:00
<div className="justify-center grid grid-cols:1 lg:grid-cols-12 gap-4 m-10">
<div className="lg:col-span-6 lg:col-start-2">
<h2 className="my-5 text-3xl lg:text-5xl text-white font-bold font-heading">
2021-07-12 17:59:53 -07:00
The event has ended. <br />
Its time to redeem your&nbsp;
<GradientText>$MNGO</GradientText>
</h2>
2021-07-13 02:16:05 -07:00
<p className="lg:text-xl">
2021-07-12 17:59:53 -07:00
Thank you for your contributions, soon you will be able to help decide
the future of Mango.
</p>
</div>
2021-07-13 02:16:05 -07:00
<div className="lg:col-span-4 lg:col-start-8 my-5">
<RedeemModal />
</div>
</div>
2021-07-22 22:02:04 -07:00
<FooterSection />
</>
)
}
export default RedeemPage