Create profile management page

This commit creates a profile management page within the settings section.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 03:06:23 +00:00
parent 7e10140b2e
commit bbd5203b23
3 changed files with 152 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ import Index from "./pages/Index";
import Transactions from "./pages/Transactions";
import Analytics from "./pages/Analytics";
import Settings from "./pages/Settings";
import ProfileManagement from "./pages/ProfileManagement";
import NotFound from "./pages/NotFound";
import Login from "./pages/Login";
import Register from "./pages/Register";
@@ -26,6 +27,7 @@ const App = () => (
<Route path="/transactions" element={<Transactions />} />
<Route path="/analytics" element={<Analytics />} />
<Route path="/settings" element={<Settings />} />
<Route path="/profile-management" element={<ProfileManagement />} />
<Route path="/login" element={<Login />} />
<Route path="/register" element={<Register />} />
<Route path="/forgot-password" element={<ForgotPassword />} />