From d4608fefbe5e380b5ed08e6f7909dd2b7e18d0be Mon Sep 17 00:00:00 2001 From: jessikitty Date: Wed, 28 Jan 2026 17:38:50 +1100 Subject: [PATCH] Add Settings route to application --- frontend/src/App.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 */} } />