import type { LucideIcon } from "lucide-react"; import { Database, ExternalLink } from "lucide-react"; import { Badge } from "@/components/ui/badge"; import { LinkButton } from "@/components/ui/button"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; type ModulePageProps = { title: string; eyebrow: string; description: string; icon: LucideIcon; phase: "待接入" | "二期预留" | "三期预留"; }; const realWorkspaceLinks = [ { href: "/app/dashboard", label: "运营看板" }, { href: "/app/elders", label: "老人档案" }, { href: "/app/beds", label: "床位房间" }, ]; export function ModulePage({ title, eyebrow, description, icon: Icon, phase }: ModulePageProps): React.ReactElement { return (

{title}

{phase}

{eyebrow}

{description}

当前模块未接入真实业务数据源。
业务记录
暂不展示
统计指标
暂不展示
待办流程
待真实流程接入
已接入工作区 以下页面展示真实系统数据。 {realWorkspaceLinks.map((link) => ( {link.label} ))}
); }