Initial project upload

This commit is contained in:
Mohamed Mathar Irfan
2026-07-28 17:57:02 +05:30
commit ed6610d5d8
23919 changed files with 3003316 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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>
);
}