feat(frontend): add 404 catch-all route and NotFoundPage component#206
Merged
Merged
Conversation
|
@fadeelah2007 is attempting to deploy a commit to the Jaja's projects Team on Vercel. A member of the Team first needs to authorize it. |
devJaja
self-requested a review
July 25, 2026 03:24
Contributor
|
Well Done @fadeelah2007 I can see all The CI checks passed. LGTM |
8 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #144
Summary
Adds a custom 404 Not Found page component (
NotFoundPage.tsx) and configures catch-all wildcard routes inApp.tsxso users navigating to undefined URLs receive clear feedback and navigation options instead of a blank screen insideAppShell.Changes
frontend/src/pages/NotFoundPage.tsxwith a primary "404 — Page Not Found" heading, brief explanation, and styled action links ("Go to Dashboard" and "Go Home").var(--text-primary),var(--text-secondary),var(--bg-primary), etc.) for consistent dark theme styling.frontend/src/App.tsxwith wildcard<Route path="*" element={<NotFoundPage />} />both insideAppShell(for app sub-routes) and outside (for root-level unknown routes).Testing
/random) renders the styled 404 page within theAppShelllayout./dashboard./.Related Issue
#144
Checklist