mango-token-sale/pages/RedeemPage.tsx

26 lines
816 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import RedeemModal from '../components/RedeemModal'
import GradientText from '../components/GradientText'
const RedeemPage = () => {
return (
<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">
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="lg:col-span-4 lg:col-start-8 my-5">
<RedeemModal />
</div>
</div>
)
}
export default RedeemPage