mango-token-sale/pages/ContributionPage.tsx

26 lines
775 B
TypeScript
Raw Normal View History

2021-07-22 00:44:52 -07:00
import ModalSection from '../components/ModalSection'
2021-07-20 07:09:59 -07:00
import PoolInfoCards from '../components/PoolInfoCards'
import HeroSection from '../components/HeroSection'
2021-07-27 14:17:25 -07:00
import ContentSectionAbout from '../components/ContentSectionAbout'
import ContentSectionSale from '../components/ContentSectionSale'
import ContentSectionRisks from '../components/ContentSectionRisks'
2021-07-22 22:02:04 -07:00
import FooterSection from '../components/FooterSection'
import ScrollToTop from '../components/ScrollToTop'
2021-07-12 17:59:53 -07:00
const ContributionPage = () => {
return (
<>
<HeroSection />
2021-07-20 07:09:59 -07:00
<PoolInfoCards />
2021-07-27 14:17:25 -07:00
<ContentSectionAbout />
<ContentSectionSale />
<ContentSectionRisks />
2021-07-23 14:43:33 -07:00
<ModalSection />
2021-07-22 22:02:04 -07:00
<FooterSection />
<ScrollToTop />
</>
)
}
2021-07-12 17:59:53 -07:00
export default ContributionPage