diff --git a/src/router/AppRoutes.jsx b/src/router/AppRoutes.jsx
index 456be8ad..63cb4388 100644
--- a/src/router/AppRoutes.jsx
+++ b/src/router/AppRoutes.jsx
@@ -35,6 +35,7 @@ import LegalInfoCard from "../pages/TermsAndConditions/LegalInfoCard";
// Protected Route Wrapper
import ProtectedRoute from "./ProtectedRoute";
+import Directory from "../pages/Directory/Directory";
const router = createBrowserRouter(
[
@@ -62,7 +63,8 @@ const router = createBrowserRouter(
{ path: "/employees", element: },
{ path: "/employee/:employeeId", element: },
{ path: "/employee/manage", element: },
- { path: "/employee/manage/:employeeId", element: },
+ {path: "/employee/manage/:employeeId", element: },
+ { path: "/directory", element: },
{ path: "/inventory", element: },
{ path: "/activities/attendance", element: },
{ path: "/activities/records/:projectId?", element: },