import type { LucideIcon } from "lucide-react"; import { Database } from "lucide-react"; import { Badge } from "@/components/ui/badge"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; type ModulePageProps = { title: string; eyebrow: string; description: string; icon: LucideIcon; phase: "待接入" | "二期预留" | "三期预留"; }; export function ModulePage({ title, eyebrow, description, icon: Icon, phase }: ModulePageProps): React.ReactElement { return (

{title}

{phase}

{eyebrow}

{description}

当前模块暂不展示业务记录、统计指标或流程入口。

接入对应的 Drizzle 查询和操作 API 前,这里只保留模块位置,不渲染未落库记录或伪造待办。

); }