BuidlZone-Labs/zicket-web
Broken Navigation Routes Hit 404 Pages Across App
Aberta
#173 aberto em 29 de jul. de 2026
Stellar Wavebugfrontendgood first issuehelp wanted
Métricas do repositório
- Stars
- (4 estrelas)
- Métricas de merge de PR
- (Métricas PR pendentes)
Description
Category
Bug
Priority
Critical
Description
Multiple primary navigation links throughout the header, signup, and verification flows link to non-existent route paths:
Header.tsx#L44contains{ name: "Plans", href: "/plans" }, but noapp/plansdirectory exists.SignupForm.tsx#L21redirects torouter.push("/verify")instead of/auth/verify.VerifyPage#L67redirects torouter.push("/dashboard")which loads outside the organizer layout navigation (/zkorg).
Proposed Solution
- Create
app/plans/page.tsxor update navigation items to point to valid routes. - Fix route path references in
SignupForm.tsxto/auth/verify. - Align dashboard redirection after verification to
/zkorg.
Acceptance Criteria
- Clicking "Plans" in header navigates to a valid plans page.
- Submitting the signup form navigates to
/auth/verify. - Completing mail verification navigates to
/zkorg. - No 404 errors encountered in primary user auth flows.
Files
app/components/Header.tsxapp/components/Auth/SignupForm.tsxapp/auth/verify/page.tsx