payment gateways and plans billing and signup pages refactored

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-07 13:02:53 +00:00
parent ad1756c349
commit ad75fa031e
17 changed files with 4587 additions and 500 deletions

View File

@@ -15,7 +15,7 @@ import SuspenseLoader from "./components/common/SuspenseLoader";
// Auth pages - loaded immediately (needed for login)
import SignIn from "./pages/AuthPages/SignIn";
import SignUp from "./pages/AuthPages/SignUp";
import SignUpPK from "./pages/AuthPages/SignUpPK";
// NOTE: SignUpPK removed - country selection now via dropdown in main signup form
import Payment from "./pages/Payment";
import NotFound from "./pages/OtherPage/NotFound";
@@ -139,7 +139,9 @@ export default function App() {
{/* Auth Routes - Public */}
<Route path="/signin" element={<SignIn />} />
<Route path="/signup" element={<SignUp />} />
<Route path="/signup/pk" element={<SignUpPK />} />
{/* NOTE: /signup/pk removed - country selection now via dropdown in signup form */}
{/* Redirect old PK route to main signup */}
<Route path="/signup/pk" element={<SignUp />} />
<Route path="/payment" element={<Payment />} />
{/* Legal Pages - Public */}