From 73b31778dbaa1a9257f179e221c029c4f3a274dc Mon Sep 17 00:00:00 2001 From: sumona-banerjeee Date: Wed, 29 Apr 2026 11:22:54 +0530 Subject: [PATCH] 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. --- lib/routes.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 lib/routes.ts diff --git a/lib/routes.ts b/lib/routes.ts new file mode 100644 index 0000000..1d6176b --- /dev/null +++ b/lib/routes.ts @@ -0,0 +1,5 @@ +export const ROUTES = { + home: "/", + manager: "/manager", + employee: "/employee", +} as const; \ No newline at end of file