mango-token-sale/pages/ContributionPage.tsx

22 lines
577 B
TypeScript
Raw Normal View History

import ContributionModal from '../components/ContributionModal'
2021-07-20 07:09:59 -07:00
import PoolInfoCards from '../components/PoolInfoCards'
import HeroSection from '../components/HeroSection'
import LandingContent from '../components/LandingContent'
2021-07-12 17:59:53 -07:00
const ContributionPage = () => {
return (
<>
<HeroSection />
2021-07-20 07:09:59 -07:00
<PoolInfoCards />
<LandingContent />
<div className="flex justify-center">
<div className="max-w-screen-md grid grid-cols-12 gap-4 w-full">
<ContributionModal />
</div>
</div>
</>
)
}
2021-07-12 17:59:53 -07:00
export default ContributionPage