mango-token-sale/pages/LeadPage.tsx

16 lines
344 B
TypeScript
Raw Normal View History

2021-07-24 10:55:31 -07:00
import ContentSectionLead from '../components/ContentSectionLead'
2021-07-22 22:02:04 -07:00
import FooterSection from '../components/FooterSection'
import HeroSectionLead from '../components/HeroSectionLead'
const LeadPage = () => {
return (
<>
<HeroSectionLead />
2021-07-24 10:55:31 -07:00
<ContentSectionLead />
2021-07-22 22:02:04 -07:00
<FooterSection />
</>
)
}
export default LeadPage