mango-token-sale/pages/LeadPage.tsx

16 lines
344 B
TypeScript

import ContentSectionLead from '../components/ContentSectionLead'
import FooterSection from '../components/FooterSection'
import HeroSectionLead from '../components/HeroSectionLead'
const LeadPage = () => {
return (
<>
<HeroSectionLead />
<ContentSectionLead />
<FooterSection />
</>
)
}
export default LeadPage