Overview dashboard and Employee Engagement is added

This commit is contained in:
2026-07-15 18:11:25 +05:30
parent 4c8c537f9c
commit 104f8f7abf
13 changed files with 314 additions and 50 deletions

View File

@@ -0,0 +1,18 @@
"use client";
import Sidebar from "@/components/dashboard/sidebar";
import OperationsDashboard from "@/components/dashboard/dashboard";
export default function OverViewDashboardPage() {
return (
<div className="p-6">
<OperationsDashboard />
</div>
);
}

View File

@@ -0,0 +1,19 @@
"use client";
import EngagementPage from "@/components/dashboard/engagement";
export default function EngagementDashboard() {
return (
<div className="p-6">
<EngagementPage/>
</div>
);
}