index.vue 878 B

12345678910111213141516171819202122232425262728293031323334
  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. useSeoMeta({
  20. title: '关于我们 - 绘家科技 | 专业的智慧社区解决方案提供商',
  21. description:
  22. '了解绘家科技的发展历程与企业愿景。我们专注通过科技赋能物业,构建美好的智慧社区生活。',
  23. keywords: '绘家科技简介,企业文化,发展历程,智慧社区愿景',
  24. })
  25. </script>
  26. <style scoped lang="scss">
  27. .landing {
  28. @apply lt-sm:pt-120px;
  29. color: var(--hj-text);
  30. background: var(--hj-bg);
  31. }
  32. </style>