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

@@ -1,21 +1,7 @@
"use client";
// app/dashboard/page.tsx
import { redirect } from "next/navigation";
import Sidebar from "@/components/dashboard/sidebar";
import OperationsDashboard from "@/components/dashboard/dashboard";
export default function DashboardPage() {
return (
<main className="flex bg-[#091522]">
<Sidebar />
<div className="flex-1 p-6 text-white">
<OperationsDashboard/>
</div>
</main>
);
export default function DashboardBasePage() {
// Automatically redirect the user to the actual overview dashboard page
redirect("/dashboard/overview/dashboard");
}