mango-token-sale/pages/LeadPage.tsx

14 lines
249 B
TypeScript
Raw Normal View History

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