diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 1759338..9b984b5 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -2,6 +2,7 @@ import { BrowserRouter as Router, Routes, Route, Navigate } from 'react-router-d import { AuthProvider, useAuth } from './contexts/AuthContext'; import Login from './pages/Login'; import Dashboard from './pages/Dashboard'; +import Settings from './pages/Settings'; // Protected route wrapper function ProtectedRoute({ children }: { children: React.ReactNode }) { @@ -72,6 +73,15 @@ function App() { } /> + + + + } + /> + {/* Default route */} } />