| 12345678910111213141516171819202122232425262728293031323334 |
- <!--
- * @Author: LiZhiWei
- * @Date: 2026-01-21 08:34:10
- * @LastEditors: LiZhiWei
- * @LastEditTime: 2026-01-21 09:09:48
- * @Description:
- -->
- <template>
- <div class="landing">
- <banner />
- <about />
- <section-history />
- <section-cta />
- </div>
- </template>
- <script setup lang="ts">
- import Banner from './components/banner.vue'
- import About from './components/about.vue'
- useSeoMeta({
- title: '关于我们 - 绘家科技 | 专业的智慧社区解决方案提供商',
- description:
- '了解绘家科技的发展历程与企业愿景。我们专注通过科技赋能物业,构建美好的智慧社区生活。',
- keywords: '绘家科技简介,企业文化,发展历程,智慧社区愿景',
- })
- </script>
- <style scoped lang="scss">
- .landing {
- @apply lt-sm:pt-120px;
- color: var(--hj-text);
- background: var(--hj-bg);
- }
- </style>
|