import { ArrowUpRightIcon, Clock3Icon } from "lucide-react" import { Button } from "@/components/ui/button" import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card" type DashboardPlaceholderProps = { eyebrow: string title: string description: string nextSteps: string[] } export function DashboardPlaceholder({ eyebrow, title, description, nextSteps, }: DashboardPlaceholderProps) { return (
{eyebrow} {title} {description}

建议下一步

{nextSteps.map((item) => (

{item}

))}

状态

当前模块已完成页面骨架,可直接接入真实 API、表单弹窗与列表查询。

) }