Add payment method page

This commit adds a new page for managing payment methods.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 04:36:51 +00:00
parent b162b6def3
commit 5fb56d660f
3 changed files with 117 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ import ProfileManagement from "./pages/ProfileManagement";
import NotificationSettings from "./pages/NotificationSettings";
import SecurityPrivacySettings from "./pages/SecurityPrivacySettings";
import HelpSupport from "./pages/HelpSupport";
import PaymentMethods from "./pages/PaymentMethods";
import NotFound from "./pages/NotFound";
import Login from "./pages/Login";
import Register from "./pages/Register";
@@ -34,6 +35,7 @@ const App = () => (
<Route path="/notification-settings" element={<NotificationSettings />} />
<Route path="/security-privacy-settings" element={<SecurityPrivacySettings />} />
<Route path="/help-support" element={<HelpSupport />} />
<Route path="/payment-methods" element={<PaymentMethods />} />
<Route path="/login" element={<Login />} />
<Route path="/register" element={<Register />} />
<Route path="/forgot-password" element={<ForgotPassword />} />