disable redeem page

This commit is contained in:
Maximilian Schneider 2021-09-09 04:39:26 +02:00
parent 8c2e39bf04
commit 3fb3a69610
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import ContributionPage from './ContributionPage'
import LeadPage from './LeadPage'
import RedeemPage from './RedeemPage'
//import RedeemPage from './RedeemPage'
import Notifications from '../components/Notification'
import NavBarBeta from '../components/NavBarBeta'
@ -16,7 +16,7 @@ const Index = () => {
<Notifications />
{startIdo?.isAfter() && <LeadPage />}
{startIdo?.isBefore() && endIdo?.isAfter() && <ContributionPage />}
{endIdo?.isBefore() && <RedeemPage />}
{/* {endIdo?.isBefore() && <RedeemPage />} */}
<div className="w-screen h-2 bg-gradient-to-r from-mango-red via-mango-yellow to-mango-green"></div>
</div>
)