mango-token-sale/pages/LeadPage.tsx

20 lines
540 B
TypeScript
Raw Permalink Normal View History

2021-07-27 17:01:34 -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 HeroSectionLead from '../components/HeroSectionLead'
const LeadPage = () => {
return (
<>
<HeroSectionLead />
2021-07-27 17:01:34 -07:00
<ContentSectionAbout />
<ContentSectionSale />
<ContentSectionRisks />
2021-07-22 22:02:04 -07:00
<FooterSection />
</>
)
}
export default LeadPage