Files
koin_ping_0.2.0/frontend/src/pages/Signup.jsx
KS Jannette 42a64fc043 Add multi-step onboarding wizard to replace bare signup form
Introduces a 5-step guided flow (Create Account → Add Wallet → Alert
Rules → Notifications → Done) that takes new users from zero to fully
configured alerts in one linear session. /signup now redirects to
/onboarding; already-onboarded users who revisit /onboarding are
redirected to /addresses.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-01 12:54:55 -05:00

6 lines
133 B
JavaScript

import { Navigate } from "react-router-dom";
export default function Signup() {
return <Navigate to="/onboarding" replace />;
}