/** 经营驾驶舱页面 — 创始人端核心经营指标可视化。 */ "use client"; import { Gauge, TrendingUp, TrendingDown, Wallet, Users, Target, Cpu, AlertTriangle } from "lucide-react"; /** 经营驾驶舱页面。 */ export default function OperationsPage() { const kpis = [ { label: "月营收", value: "800万", trend: "up", trendValue: "+15%", icon: Wallet, color: "text-emerald-600" }, { label: "毛利率", value: "42%", trend: "up", trendValue: "+3%", icon: TrendingUp, color: "text-emerald-600" }, { label: "客户数", value: "156", trend: "up", trendValue: "+12", icon: Users, color: "text-emerald-600" }, { label: "Runway", value: "18 月", trend: "stable", trendValue: "持平", icon: Gauge, color: "text-blue-600" }, { label: "OKR 进度", value: "68%", trend: "up", trendValue: "+8%", icon: Target, color: "text-indigo-600" }, { label: "AI PoC", value: "3 个", trend: "up", trendValue: "+1", icon: Cpu, color: "text-indigo-600" }, ]; return (

经营驾驶舱

{/* KPI 卡片网格 */}
{kpis.map((kpi) => (
{kpi.value}
{kpi.label}
))}
{/* 风险提示 */}
); }