adding home landing page

This commit is contained in:
Steven Sarmiento 2021-07-11 21:27:17 -07:00 committed by GitHub
parent 090a880fb6
commit a4988adef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

19
pages/home.tsx Normal file
View File

@ -0,0 +1,19 @@
import NavBarBeta from '../components/NavBarBeta'
import HeroSectionHome from '../components/HeroSectionHome'
import HomeSection from '../components/HomeSection'
import FooterSection from '../components/FooterSection'
const Index = () => {
return (
<div className={`bg-th-bkg-1 text-th-fgd-1 transition-all`}>
<div className="w-screen h-2 bg-gradient-to-r from-red-400 via-yellow-300 to-green-300"></div>
<NavBarBeta />
<HeroSectionHome />
<HomeSection />
<FooterSection />
<div className="w-screen h-2 bg-gradient-to-r from-red-400 via-yellow-300 to-green-300"></div>
</div>
)
}
export default Index