/** 创始人端 OKR 对齐视图 — 查看公司 OKR 与投资人期望的对齐情况。 */ "use client"; import { Target, CheckCircle2, Circle, AlertTriangle } from "lucide-react"; /** OKR 数据。 */ interface OKR { objective: string; keyResults: { title: string; progress: number; aligned: boolean }[]; } /** OKR 对齐视图页面。 */ export default function OKRAlignPage() { const okrs: OKR[] = [ { objective: "加速 AI 商业化落地", keyResults: [ { title: "完成 3 个 PoC 签约", progress: 67, aligned: true }, { title: "AI 产品月营收达 100 万", progress: 45, aligned: true }, { title: "客户满意度 NPS > 50", progress: 80, aligned: false }, ], }, { objective: "提升组织效能", keyResults: [ { title: "核心团队扩招 5 人", progress: 100, aligned: true }, { title: "建立 OKR 季度复盘机制", progress: 100, aligned: true }, { title: "人均产出提升 20%", progress: 60, aligned: true }, ], }, ]; return (