From 2e18137b5b159dd9310286d298d776d20d361448 Mon Sep 17 00:00:00 2001 From: jackiettran <41605212+jackiettran@users.noreply.github.com> Date: Thu, 25 Dec 2025 23:32:55 -0500 Subject: [PATCH] 404 page --- frontend/src/App.tsx | 2 ++ frontend/src/pages/NotFound.tsx | 38 ++++++++++++++++++++++++++++++ frontend/src/pages/VerifyEmail.tsx | 2 +- 3 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 frontend/src/pages/NotFound.tsx diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 8a48d4d..7dfc91b 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -27,6 +27,7 @@ import CreateForumPost from './pages/CreateForumPost'; import MyPosts from './pages/MyPosts'; import EarningsDashboard from './pages/EarningsDashboard'; import FAQ from './pages/FAQ'; +import NotFound from './pages/NotFound'; import PrivateRoute from './components/PrivateRoute'; import axios from 'axios'; import './App.css'; @@ -184,6 +185,7 @@ const AppContent: React.FC = () => { } /> } /> + } />