@@ -171,6 +171,9 @@ const CompliancePage = lazyWithRetry(() => import("./module/recruiter/hr/Complia
171171const WorkflowsPage = lazyWithRetry ( ( ) => import ( "./module/recruiter/hr/WorkflowsPage" ) ) ;
172172const RolesPage = lazyWithRetry ( ( ) => import ( "./module/recruiter/hr/RolesPage" ) ) ;
173173
174+ // InternHack AI pages
175+ const JobAgentPage = lazyWithRetry ( ( ) => import ( "./module/student/job-agent/JobAgentPage" ) ) ;
176+
174177// Student new feature pages
175178const CampusDrivesPage = lazyWithRetry ( ( ) => import ( "./module/student/campus/CampusDrivesPage" ) ) ;
176179const CampusDriveDetailPage = lazyWithRetry ( ( ) => import ( "./module/student/campus/CampusDriveDetailPage" ) ) ;
@@ -182,7 +185,7 @@ const AdminDashboard = lazyWithRetry(() => import("./module/admin/AdminDashboard
182185const UsersListPage = lazyWithRetry ( ( ) => import ( "./module/admin/users/UsersListPage" ) ) ;
183186const UserDetailPage = lazyWithRetry ( ( ) => import ( "./module/admin/users/UserDetailPage" ) ) ;
184187const AdminJobsListPage = lazyWithRetry ( ( ) => import ( "./module/admin/jobs/AdminJobsListPage" ) ) ;
185- const ActivityLogsPage = lazyWithRetry ( ( ) => import ( "./module/admin/activity/ActivityLogsPage" ) ) ;
188+ const ErrorLogsPage = lazyWithRetry ( ( ) => import ( "./module/admin/activity/ActivityLogsPage" ) ) ;
186189const AdminCompaniesPage = lazyWithRetry ( ( ) => import ( "./module/admin/companies/AdminCompaniesPage" ) ) ;
187190const AdminReviewsPage = lazyWithRetry ( ( ) => import ( "./module/admin/reviews/AdminReviewsPage" ) ) ;
188191const AdminContributionsPage = lazyWithRetry ( ( ) => import ( "./module/admin/contributions/AdminContributionsPage" ) ) ;
@@ -372,7 +375,8 @@ function App() {
372375 < Route path = "opensource/gsoc-proposal" element = { < GSoCProposalPage /> } />
373376 < Route path = "opensource/gsoc-proposal/:sectionSlug" element = { < GSoCProposalStepPage /> } />
374377 < Route path = "opensource/analytics" element = { < OpenSourceAnalyticsPage /> } />
375- < Route path = "campus-drives" element = { < CampusDrivesPage /> } />
378+ < Route path = "ai-agent" element = { < JobAgentPage /> } />
379+ < Route path = "campus-drives" element = { < CampusDrivesPage /> } />
376380 < Route path = "campus-drives/:id" element = { < CampusDriveDetailPage /> } />
377381 < Route path = "checkout" element = { < CheckoutPage /> } />
378382 < Route path = "profile" element = { < StudentProfilePage /> } />
@@ -425,7 +429,7 @@ function App() {
425429 < Route path = "users" element = { < UsersListPage /> } />
426430 < Route path = "users/:id" element = { < UserDetailPage /> } />
427431 < Route path = "jobs" element = { < AdminJobsListPage /> } />
428- < Route path = "activity " element = { < ActivityLogsPage /> } />
432+ < Route path = "errors " element = { < ErrorLogsPage /> } />
429433 < Route path = "companies" element = { < AdminCompaniesPage /> } />
430434 < Route path = "reviews" element = { < AdminReviewsPage /> } />
431435 < Route path = "contributions" element = { < AdminContributionsPage /> } />
0 commit comments