Implement security settings page

Implement the security settings page.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 03:10:53 +00:00
parent 598ee8187c
commit 2d88daa3bd
3 changed files with 169 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ import Analytics from "./pages/Analytics";
import Settings from "./pages/Settings";
import ProfileManagement from "./pages/ProfileManagement";
import NotificationSettings from "./pages/NotificationSettings";
import SecurityPrivacySettings from "./pages/SecurityPrivacySettings";
import NotFound from "./pages/NotFound";
import Login from "./pages/Login";
import Register from "./pages/Register";
@@ -30,6 +31,7 @@ const App = () => (
<Route path="/settings" element={<Settings />} />
<Route path="/profile-management" element={<ProfileManagement />} />
<Route path="/notification-settings" element={<NotificationSettings />} />
<Route path="/security-privacy-settings" element={<SecurityPrivacySettings />} />
<Route path="/login" element={<Login />} />
<Route path="/register" element={<Register />} />
<Route path="/forgot-password" element={<ForgotPassword />} />