import { Button } from "@/components/ui/button"; import { ArrowRight } from "lucide-react"; import type { Lang } from "@/app/page"; const MANAGER_URL = "https://code.xinghanlab.com/"; const REGISTER_URL = "https://agnet.taijiaicloud.com/login/"; const copy = { en: { title: "Move an idea into a real development flow", description: "Heicode does more than generate code. It organizes product intent, code, permissions, models, deployment, and maintenance into one auditable software lifecycle.", primary: "Enter Heicode", secondary: "Register account", }, zh: { title: "让想法进入真实开发流程", description: "不是只生成代码,而是把产品、代码、权限、模型、部署和维护组织成一个可审计的软件生命周期。", primary: "进入 Heicode", secondary: "注册账号", }, } satisfies Record; export function CTA({ lang }: { lang: Lang }) { const t = copy[lang]; return (

{t.title}

{t.description}

); }