src/app/admin/users/page.tsx uses the Next.js App Router convention (page.tsx default export) inside a Vite + React Router SPA; there is no /admin route in App.tsx, so it and UserManagement never render. AdminAnalyticsDashboard is only reachable indirectly via Dashboard, and several components (CRLComponent, CertificateDemoPage, CsvExportButton, CertificateSearchBar) are imported nowhere (verified). Fix: add proper React Router routes for the admin surface and remove or wire up the orphaned files.
src/app/admin/users/page.tsxuses the Next.js App Router convention (page.tsxdefault export) inside a Vite + React Router SPA; there is no/adminroute inApp.tsx, so it andUserManagementnever render.AdminAnalyticsDashboardis only reachable indirectly viaDashboard, and several components (CRLComponent,CertificateDemoPage,CsvExportButton,CertificateSearchBar) are imported nowhere (verified). Fix: add proper React Router routes for the admin surface and remove or wire up the orphaned files.