index.vue 917 B

12345678910111213141516171819202122232425262728293031323334
  1. <!--
  2. * @Author: LiZhiWei
  3. * @LastEditors: LiZhiWei
  4. * @LastEditTime: 2026-01-22 10:19:40
  5. * @Description:
  6. -->
  7. <template>
  8. <div class="landing">
  9. <section-hero />
  10. <section-solution />
  11. <section-ability />
  12. <section-cases />
  13. <section-partnership />
  14. <section-history />
  15. <section-cta />
  16. </div>
  17. </template>
  18. <script setup lang="ts">
  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>