forked from emre/www_projectmycelium_com
40 lines
874 B
TypeScript
40 lines
874 B
TypeScript
import { AnimatedSection } from '../../components/AnimatedSection'
|
|
import { HomeAurora } from './HomeAurora'
|
|
import { StackSectionLight } from './StackSection'
|
|
import { WorldMap } from './HomeGlobe'
|
|
import { HomeBenefits } from './HomeBenefits'
|
|
import { CallToAction } from './CallToAction'
|
|
import { HomeSlider } from './HomeSlider'
|
|
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div>
|
|
<AnimatedSection>
|
|
<HomeAurora />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection id="next-section">
|
|
<WorldMap />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<StackSectionLight />
|
|
</AnimatedSection>
|
|
|
|
|
|
<AnimatedSection>
|
|
<HomeSlider />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<HomeBenefits />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CallToAction />
|
|
</AnimatedSection>
|
|
</div>
|
|
)
|
|
}
|