Add files via upload

This commit is contained in:
Steven Sarmiento 2021-07-16 17:57:02 -07:00 committed by GitHub
parent d8464f6072
commit dc51187596
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -1,19 +1,21 @@
import ContributionModal from '../components/ContributionModal'
import PoolInfoCards from '../components/PoolInfoCards'
import FooterSection from '../components/FooterSection'
import HeroSection from '../components/HeroSection'
import LandingContent from '../components/LandingContent'
import NavBarBeta from '../components/NavBarBeta'
const ContributionPage = () => {
return (
<>
<NavBarBeta />
<HeroSection />
<PoolInfoCards />
<LandingContent />
<div className="flex justify-center">
<div className="max-w-screen-md grid grid-cols-12 gap-4 w-full">
<ContributionModal />
</div>
</div>
<FooterSection />
</>
)
}