feat: add department dashboard

This commit is contained in:
ARJUN S THAMPI
2026-03-16 17:55:33 +05:30
parent aaa62ae3f5
commit 46bbd8106b
23 changed files with 1621 additions and 684 deletions
+18
View File
@@ -0,0 +1,18 @@
import {Outlet} from "react-router-dom";
import Sidebar from "@/components/layout/Sidebar";
import Header from "@/components/layout/Header";
export default function DashboardLayout() {
return (
<div className="flex min-h-screen bg-background">
<Sidebar />
<div className="flex flex-col flex-1">
<Header />
<main className="flex-1 p-6">
<Outlet />
</main>
</div>
</div>
);
}