feat: redesign homepage with new sections and layout

- Added new component sections including globe visualization, statistics dashboard, interactive stack explorer, and product showcase
- Replaced existing homepage sections with updated components featuring improved visual hierarchy and user engagement
- Removed footer border and adjusted hero section spacing for cleaner visual flow
This commit is contained in:
2025-11-06 03:41:26 +01:00
parent 005d8c35d4
commit d7769a5ecd
11 changed files with 481 additions and 10 deletions

View File

@@ -6,6 +6,19 @@ import { HomeBenefits } from './HomeBenefits'
import { CallToAction } from './CallToAction'
import { HomeSlider } from './HomeSlider'
import { HomeHosting } from './HomeHosting'
import { HomeGlobeNew } from './HomeGlobeNew'
import { HomeStat } from './HomeStat'
import { HomeApplication } from './HomeTabs'
import { HomeStack } from './HomeStack'
import { HomeUniverse } from './HomeUniverse'
import { HomeProductsA } from './HomeProductsA'
import { HomeWhy } from './HomeWhy'
import { HomeCTA } from './HomeCTA'
export default function HomePage() {
@@ -15,28 +28,36 @@ export default function HomePage() {
<HomeHero />
</AnimatedSection>
<AnimatedSection id="next-section">
<WorldMap />
<AnimatedSection>
<HomeGlobeNew />
</AnimatedSection>
<AnimatedSection>
<HomeHosting />
<HomeStat />
</AnimatedSection>
<AnimatedSection>
<StackSectionDark />
<HomeApplication />
</AnimatedSection>
<AnimatedSection>
<HomeSlider />
<HomeStack />
</AnimatedSection>
<AnimatedSection>
<HomeBenefits />
<HomeUniverse />
</AnimatedSection>
<AnimatedSection>
<CallToAction />
<HomeProductsA />
</AnimatedSection>
<AnimatedSection>
<HomeWhy />
</AnimatedSection>
<AnimatedSection>
<HomeCTA />
</AnimatedSection>
</div>
)