mango-web/pages/index.tsx

20 lines
654 B
TypeScript

import HeroSectionLP from '../components/HeroSectionLP'
import LandingContent from '../components/LandingContent'
import FooterSection from '../components/FooterSection'
import NavBarBeta from '../components/NavBarBeta'
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 />
<HeroSectionLP />
<LandingContent />
<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