"use client"; import { useState } from "react"; import { useTranslation, Link } from "@/i18n/navigation"; import Footer from "@/app/components/Footer"; interface Service { id: string; icon: string; titleZh: string; titleEn: string; descZh: string; descEn: string; features: { zh: string; en: string }[]; priceZh: string; priceEn: string; color: string; gradientFrom: string; gradientTo: string; } const SERVICES: Service[] = [ { id: "insurance", icon: "🛡️", titleZh: "旅行保险", titleEn: "Travel Insurance", descZh: "数字游民定制方案,覆盖全球", descEn: "Global coverage for digital nomads", features: [ { zh: "覆盖中国 + 境外", en: "Coverage in China + overseas" }, { zh: "远程工作专属条款", en: "Remote work specific terms" }, { zh: "医疗直付服务", en: "Direct medical payment" }, { zh: "24/7 中文客服", en: "24/7 Chinese support" }, ], priceZh: "¥15/天起", priceEn: "From ¥15/day", color: "emerald", gradientFrom: "from-emerald-500", gradientTo: "to-teal-500", }, { id: "chat", icon: "💬", titleZh: "社区聊天", titleEn: "Community Chat", descZh: "与全球数字游民实时交流", descEn: "Connect with nomads worldwide in real-time", features: [ { zh: "3,200+ 在线成员", en: "3,200+ members online" }, { zh: "城市群/兴趣群", en: "City & interest groups" }, { zh: "即时信息对接", en: "Instant networking" }, { zh: "经验分享互助", en: "Experience sharing" }, ], priceZh: "免费", priceEn: "Free", color: "violet", gradientFrom: "from-violet-500", gradientTo: "to-purple-500", }, { id: "tools", icon: "🧰", titleZh: "工具箱", titleEn: "Tools", descZh: "汇率、税务、签证一站式", descEn: "Exchange, tax & visa in one place", features: [ { zh: "实时汇率计算", en: "Real-time exchange rates" }, { zh: "税务估算器", en: "Tax calculator" }, { zh: "签证倒计时", en: "Visa countdown" }, { zh: "FIRE 计算器", en: "FIRE calculator" }, ], priceZh: "免费", priceEn: "Free", color: "blue", gradientFrom: "from-blue-500", gradientTo: "to-cyan-500", }, { id: "coworking", icon: "🏢", titleZh: "共享办公", titleEn: "Coworking", descZh: "全球优质办公空间推荐", descEn: "Premium workspace recommendations", features: [ { zh: "全球 10,000+ 空间", en: "10,000+ spaces worldwide" }, { zh: "会员专属折扣", en: "Member discounts" }, { zh: "实地考察报告", en: "On-site reviews" }, { zh: "预订直通车", en: "Direct booking" }, ], priceZh: "¥99/月起", priceEn: "From ¥99/month", color: "orange", gradientFrom: "from-orange-500", gradientTo: "to-amber-500", }, { id: "visa", icon: "📋", titleZh: "签证服务", titleEn: "Visa Services", descZh: "专业签证顾问全程护航", descEn: "Professional visa consultants", features: [ { zh: "全球签证办理", en: "Global visa processing" }, { zh: "材料翻译公证", en: "Translation & notarization" }, { zh: "加急服务", en: "Expedited service" }, { zh: "拒签退款保障", en: "Refund guarantee" }, ], priceZh: "咨询报价", priceEn: "Contact for quote", color: "rose", gradientFrom: "from-rose-500", gradientTo: "to-pink-500", }, { id: "mentor", icon: "🎓", titleZh: "导师计划", titleEn: "Mentor Program", descZh: "资深游民一对一指导", descEn: "1-on-1 guidance from experienced nomads", features: [ { zh: "职业规划建议", en: "Career planning" }, { zh: "创业经验分享", en: "Startup experience" }, { zh: "远程工作技巧", en: "Remote work tips" }, { zh: "人脉资源对接", en: "Network access" }, ], priceZh: "¥299/次", priceEn: "¥299/session", color: "indigo", gradientFrom: "from-indigo-500", gradientTo: "to-violet-500", }, ]; export default function ServicesPage() { const { t } = useTranslation("services"); return (

{t("title")}

{t("subtitle")}

{SERVICES.map((service) => (
{service.icon}

{service.titleZh}

{service.titleEn}

{service.descZh}

    {service.features.map((feature, i) => (
  • {feature.zh}
  • ))}
{service.priceZh} {t("learnMore")} →
))}

还没有找到需要的服务?

联系我们的客服,获取定制化解决方案

联系客服
); }