BuidlZone-Labs/zicket-web

Broken Navigation Routes Hit 404 Pages Across App

开放

#173 创建于 2026年7月29日

 (9 条评论) (0 个反应) (1 位负责人)TypeScript (43 个派生)auto 404
Stellar Wavebugfrontendgood first issuehelp wanted

仓库指标

星标
 (4 个星标)
PR 合并指标
 (平均合并 2天 13小时) (30 天内合并 9 个 PR)

描述

Category

Bug

Priority

Critical

Description

Multiple primary navigation links throughout the header, signup, and verification flows link to non-existent route paths:

  1. Header.tsx#L44 contains { name: "Plans", href: "/plans" }, but no app/plans directory exists.
  2. SignupForm.tsx#L21 redirects to router.push("/verify") instead of /auth/verify.
  3. VerifyPage#L67 redirects to router.push("/dashboard") which loads outside the organizer layout navigation (/zkorg).

Proposed Solution

  1. Create app/plans/page.tsx or update navigation items to point to valid routes.
  2. Fix route path references in SignupForm.tsx to /auth/verify.
  3. 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.tsx
  • app/components/Auth/SignupForm.tsx
  • app/auth/verify/page.tsx

贡献者指南