index.vue 536 B

123456789101112131415161718192021222324252627
  1. <!--
  2. * @Author: LiZhiWei
  3. * @Date: 2026-01-21 08:34:10
  4. * @LastEditors: LiZhiWei
  5. * @LastEditTime: 2026-01-21 09:09:48
  6. * @Description:
  7. -->
  8. <template>
  9. <div class="landing">
  10. <banner />
  11. <about />
  12. <section-history />
  13. <section-cta />
  14. </div>
  15. </template>
  16. <script setup lang="ts">
  17. import Banner from './components/banner.vue'
  18. import About from './components/about.vue'
  19. </script>
  20. <style scoped lang="scss">
  21. .landing {
  22. @apply lt-sm:pt-120px;
  23. color: var(--hj-text);
  24. background: var(--hj-bg);
  25. }
  26. </style>