added new sections

This commit is contained in:
steven 2021-07-27 17:01:34 -07:00
parent afda9cac02
commit 4aa77837f1
1 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,6 @@
import ContentSectionLead from '../components/ContentSectionLead'
import ContentSectionAbout from '../components/ContentSectionAbout'
import ContentSectionSale from '../components/ContentSectionSale'
import ContentSectionRisks from '../components/ContentSectionRisks'
import FooterSection from '../components/FooterSection'
import HeroSectionLead from '../components/HeroSectionLead'
@ -6,7 +8,9 @@ const LeadPage = () => {
return (
<>
<HeroSectionLead />
<ContentSectionLead />
<ContentSectionAbout />
<ContentSectionSale />
<ContentSectionRisks />
<FooterSection />
</>
)