forked from emre/www_projectmycelium_com
- Separated HomeAurora into pure background component and new HomeHero for content - Converted aurora to absolute positioned background layer in Layout for homepage - Removed z-index conflicts and cleaned up background color declarations
44 lines
987 B
TypeScript
44 lines
987 B
TypeScript
import { AnimatedSection } from '../../components/AnimatedSection'
|
|
import { HomeHero } from './HomeHero'
|
|
import { StackSectionDark } from './StackSectionDark'
|
|
import { WorldMap } from './HomeGlobe'
|
|
import { HomeBenefits } from './HomeBenefits'
|
|
import { CallToAction } from './CallToAction'
|
|
import { HomeSlider } from './HomeSlider'
|
|
import { HomeHosting } from './HomeHosting'
|
|
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div>
|
|
<AnimatedSection>
|
|
<HomeHero />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection id="next-section">
|
|
<WorldMap />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<HomeHosting />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<StackSectionDark />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<HomeSlider />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<HomeBenefits />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<CallToAction />
|
|
</AnimatedSection>
|
|
</div>
|
|
)
|
|
}
|