Files
www_projectmycelium_com/src/pages/home/HomePage.tsx
sasha-astiadi a73608ce6c refactor: extract hero content from aurora background component
- 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
2025-11-06 01:13:36 +01:00

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>
)
}