added new components

This commit is contained in:
Steven Sarmiento 2021-07-12 04:49:39 -07:00 committed by GitHub
parent c5a76cf8cc
commit 870ac48a63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,9 @@
import NavBarBeta from '../components/NavBarBeta'
import HeroSectionHome from '../components/HeroSectionHome'
import HomeSection from '../components/HomeSection'
import TradeSection from '../components/TradeSection'
import FooterSection from '../components/FooterSection'
import LendSection from '../components/LendSection'
import CommunitySection from '../components/CommunitySection'
const Index = () => {
return (
@ -9,7 +11,9 @@ const Index = () => {
<div className="w-screen h-2 bg-gradient-to-r from-red-400 via-yellow-300 to-green-300"></div>
<NavBarBeta />
<HeroSectionHome />
<HomeSection />
<TradeSection />
<LendSection />
<CommunitySection />
<FooterSection />
<div className="w-screen h-2 bg-gradient-to-r from-red-400 via-yellow-300 to-green-300"></div>
</div>