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 (
{eyebrow}
{description}