Add help and support page

Implements the help and support page.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 03:12:25 +00:00
parent 2d88daa3bd
commit b1f83dc486
3 changed files with 159 additions and 0 deletions

View File

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