diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index bad5b74..f57d780 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -10,6 +10,8 @@ import ProjectDetail from '@/pages/ProjectDetail'; import Tasks from '@/pages/Tasks'; import Workers from '@/pages/Workers'; import Reviews from '@/pages/Reviews'; +import Alerts from '@/pages/Alerts'; +import KnowledgeBase from '@/pages/KnowledgeBase'; function ProtectedRoute({ children }: { children: React.ReactNode }) { const { isAuthenticated } = useAuthStore(); @@ -57,6 +59,8 @@ export default function App() { } /> } /> } /> + } /> + } /> } />