first commit for the leave management system. built a Leave Management System with role-based access:

Employees can apply for leave and track balance, status, and history.
Managers can view all requests and approve/reject them.
Login with separate dashboards for employees and managers with the dummy json.
Tables with filters (All, Pending, Approved, Rejected) for easy management.
This commit is contained in:
sumona-banerjeee 2026-04-29 11:22:54 +05:30
parent c5946ce95e
commit 73b31778db

5
lib/routes.ts Normal file
View File

@ -0,0 +1,5 @@
export const ROUTES = {
home: "/",
manager: "/manager",
employee: "/employee",
} as const;