feat(frontend): add basic frontend

This commit is contained in:
2025-12-26 20:14:30 +03:00
parent 262c42c1b3
commit 707a474ef3
38 changed files with 5230 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { DashboardPage } from "../pages/dashboard/ui/DashboardPage";
export function App() {
return (
<div className="min-h-screen bg-background text-foreground">
<DashboardPage />
</div>
);
}