feat(landing): Lazy load components, prerender of pages

This commit is contained in:
2026-01-16 17:34:42 +01:00
parent 75f12ce775
commit 00b49a5cb2
2 changed files with 22 additions and 23 deletions

View File

@@ -1,28 +1,16 @@
<template>
<div class="landing-page">
<!-- Hero Section -->
<!-- Hero Section (above the fold - load eagerly) -->
<LandingHeroSection />
<!-- Stats Section (Social Proof) -->
<LandingStatsSection />
<!-- Benefits for Works Councils -->
<LandingBenefitsWorksCouncil />
<!-- Features Grid (Bento Layout) -->
<LandingFeaturesGrid />
<!-- Additional Features / Trust Signals -->
<LandingAdditionalFeatures />
<!-- Framework Agreement Section -->
<LandingFrameworkAgreement />
<!-- Newsletter Signup (Glass-morphism) -->
<LandingNewsletterSignup />
<!-- Expert Access CTA (Gradient Mesh) -->
<LandingExpertAccess />
<!-- Below-the-fold sections - lazy loaded for better initial performance -->
<LazyLandingStatsSection />
<LazyLandingBenefitsWorksCouncil />
<LazyLandingFeaturesGrid />
<LazyLandingAdditionalFeatures />
<LazyLandingFrameworkAgreement />
<LazyLandingNewsletterSignup />
<LazyLandingExpertAccess />
</div>
</template>