The start of something new new

This commit is contained in:
steven 2022-12-14 12:34:33 -05:00
parent d63854a826
commit e48a4fa0dc
2 changed files with 12 additions and 12 deletions

View File

@ -1,12 +1,16 @@
import NavBarBeta from '../components/NavBarBeta'
import HeroSectionHome from '../components/HeroSectionHome'
import NavBarAlpha from '../components/NavBarAlpha'
import HeroSectionNew from '../components/HeroSectionNew'
import HeroSectionMarkets from '../components/HeroSectionMarkets'
//import HeroSectionFeatures from '../components/HeroSectionFeatures'
const Index = () => {
return (
<div className={`bg-bkg-1 text-fgd-1 transition-all overflow-hidden`}>
<div className="w-screen h-2 bg-gradient-to-r from-mango-red via-mango-yellow to-mango-green"></div>
<NavBarBeta />
<HeroSectionHome />
<NavBarAlpha />
<HeroSectionNew />
<HeroSectionMarkets />
{/*<HeroSectionFeatures />*/}
</div>
)
}

View File

@ -1,16 +1,12 @@
import NavBarAlpha from '../components/NavBarAlpha'
import HeroSectionNew from '../components/HeroSectionNew'
import HeroSectionMarkets from '../components/HeroSectionMarkets'
//import HeroSectionFeatures from '../components/HeroSectionFeatures'
import NavBarBeta from '../components/NavBarBeta'
import HeroSectionHome from '../components/HeroSectionHome'
const IndexTeaser = () => {
return (
<div className={`bg-bkg-1 text-fgd-1 transition-all overflow-hidden`}>
<div className="w-screen h-2 bg-gradient-to-r from-mango-red via-mango-yellow to-mango-green"></div>
<NavBarAlpha />
<HeroSectionNew />
<HeroSectionMarkets />
{/*<HeroSectionFeatures />*/}
<NavBarBeta />
<HeroSectionHome />
</div>
)
}