Summary
Top-nav links currently point to routes that are not registered in the active router, causing broken navigation.
Severity
Moderate-High
Steps to Reproduce
- Open the app.
- Click Store in the navbar.
- Click Game mode in the navbar.
Actual Result
Navigation goes to /store and /game-mode, but no matching route renders useful page content.
Expected Result
All navbar links should resolve to valid, rendered routes (or valid in-page anchors).
Impact
- Core navigation is unreliable.
- Users can hit dead-end states.
- Regression risk across recently merged navbar/routing work.
Proposed Fix
- Use one route source of truth.
- Add missing route definitions or update navbar links to valid targets.
- Add wildcard 404 fallback route.
- Add quick regression checks for all navbar links.
Acceptance Criteria
- Every navbar item lands on valid content.
/store and /game-mode are either fully implemented or removed from nav.
- Unknown routes show a clear fallback page.
Summary
Top-nav links currently point to routes that are not registered in the active router, causing broken navigation.
Severity
Moderate-High
Steps to Reproduce
Actual Result
Navigation goes to
/storeand/game-mode, but no matching route renders useful page content.Expected Result
All navbar links should resolve to valid, rendered routes (or valid in-page anchors).
Impact
Proposed Fix
Acceptance Criteria
/storeand/game-modeare either fully implemented or removed from nav.