mango-token-sale/pages/ContributionPage.tsx

20 lines
493 B
TypeScript

import ModalSection from '../components/ModalSection'
import PoolInfoCards from '../components/PoolInfoCards'
import HeroSection from '../components/HeroSection'
import ContentSection from '../components/ContentSection'
import FooterSection from '../components/FooterSection'
const ContributionPage = () => {
return (
<>
<HeroSection />
<PoolInfoCards />
<ContentSection />
<ModalSection />
<FooterSection />
</>
)
}
export default ContributionPage