Files
Home-Care/hss-home-service/website/pages/about.vue
comclib c02029a5f3 feat: 初始化居家上门服务系统完整项目代码
- Spring Boot 后端服务 (hss-home-service)
- delivery-miniapp 配送小程序
- website 官网 (Nuxt)
- docs 架构设计文档
- Docker 容器化部署配置

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-19 09:04:49 +08:00

41 lines
1.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<script setup lang="ts">
import { useSeo } from '~/composables/useSeo'
import { siteName, siteTagline } from '~/data/siteContent'
useSeo({ title: '关于我们', description: siteTagline })
</script>
<template>
<section class="py-20 bg-gradient-to-br from-primary-700 to-primary-900 text-white">
<div class="section-container text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-4">关于我们</h1>
<p class="text-xl text-blue-100 max-w-2xl mx-auto">{{ siteName }}</p>
</div>
</section>
<section class="py-20 bg-white">
<div class="section-container max-w-3xl">
<div class="prose prose-lg mx-auto">
<h2 class="text-3xl font-bold mb-6">平台愿景</h2>
<p class="text-text-secondary leading-relaxed mb-8">
我们致力于为政府医院养老机构和社区服务中心提供专业可信智能的居家上门服务闭环管理平台
通过数字化手段让每一个服务请求都有始有终每一步操作都可追溯每一个异常都有处理每一笔费用都有结算
</p>
<h2 class="text-3xl font-bold mb-6">核心团队</h2>
<p class="text-text-secondary leading-relaxed mb-8">
团队由医疗信息化养老服务运营企业级 SaaS 平台开发等领域的资深专家组成
具有丰富的医养结合数字化平台建设和落地经验
</p>
<h2 class="text-3xl font-bold mb-6">行业标准</h2>
<p class="text-text-secondary leading-relaxed mb-8">
平台设计严格遵循居家养老上门服务基本规范GB/T 43153-2023 以及智慧健康养老产业发展相关指导文件
确保服务流程数据安全质量评价和用户隐私保护符合国家标准
</p>
</div>
</div>
</section>
<CtaSection />
</template>