phase 16: React dashboard with full platform control and analytics

This commit is contained in:
Celes Renata
2026-04-11 16:19:46 -07:00
parent 25e0e386b7
commit faccb0b8db
53 changed files with 7924 additions and 13 deletions
+10
View File
@@ -0,0 +1,10 @@
export function PlaceholderPage({ title }: { title: string }) {
return (
<div className="flex items-center justify-center h-full">
<div className="text-center">
<h1 className="text-2xl font-semibold text-gray-200">{title}</h1>
<p className="mt-2 text-gray-500">Coming soon</p>
</div>
</div>
);
}