index.vue 932 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!--
  2. * @Author: LiZhiWei
  3. * @LastEditors: LiZhiWei
  4. * @LastEditTime: 2026-01-20 11:18:49
  5. * @Description:
  6. -->
  7. <template>
  8. <div class="landing">
  9. <HeroSection />
  10. <SolutionSection />
  11. <AbilitySection />
  12. <CasesSection />
  13. <PartnershipSection />
  14. <HistorySection />
  15. <CtaSection />
  16. </div>
  17. </template>
  18. <script setup lang="ts">
  19. import HeroSection from './components/HeroSection.vue'
  20. import SolutionSection from './components/SolutionSection.vue'
  21. import AbilitySection from './components/AbilitySection.vue'
  22. import CasesSection from './components/CasesSection.vue'
  23. import PartnershipSection from './components/PartnershipSection.vue'
  24. import HistorySection from './components/HistorySection.vue'
  25. import CtaSection from './components/CtaSection.vue'
  26. </script>
  27. <style scoped lang="scss">
  28. .landing {
  29. @apply lt-sm:pt-120px;
  30. color: var(--hj-text);
  31. background: var(--hj-bg);
  32. }
  33. </style>