Files
verify/frontend/components/Placeholder.tsx
Mohamed Mathar Irfan ed6610d5d8 Initial project upload
2026-07-28 17:57:02 +05:30

14 lines
483 B
TypeScript

import { Construction } from "lucide-react";
export default function Placeholder({ title, note }: { title: string; note?: string }) {
return (
<div className="space-y-4">
<h2 className="text-xl font-bold">{title}</h2>
<div className="card p-12 text-center text-slate-400">
<Construction className="h-8 w-8 mx-auto mb-3 opacity-50" />
<p>{note ?? `${title} screen — scaffolded. Wire to its API endpoints next.`}</p>
</div>
</div>
);
}