| 12345678910111213141516171819202122232425262728293031 |
- import type { I18nKey } from "@/lib/i18n/dict";
- /** 首页数字条:标签与展示数值均支持中英 */
- export const stats: { labelKey: I18nKey; valueKey: I18nKey }[] = [
- { labelKey: "home.stats.clients", valueKey: "home.stats.val.clients" },
- { labelKey: "home.stats.conversations", valueKey: "home.stats.val.conversations" },
- { labelKey: "home.stats.latency", valueKey: "home.stats.val.latency" },
- { labelKey: "home.stats.satisfaction", valueKey: "home.stats.val.satisfaction" },
- ];
- // 客户评价
- export const testimonials = [
- {
- name: "张总",
- company: "某科技公司",
- content: "AI-CS 让我们的客服效率提升了 300%,客户满意度也大幅提升。",
- },
- {
- name: "李经理",
- company: "某电商平台",
- content: "7×24 小时智能应答,再也不用担心夜间客服问题了。",
- },
- {
- name: "王总监",
- company: "某金融公司",
- content: "企业级安全保障,让我们放心使用。数据加密存储,权限精细管理。",
- },
- ];
- // 合作伙伴 Logo(占位,与 page 中 partner.name 一致)
- export const partnerLogos: { name: string }[] = [];
|