This commit is contained in:
jackiettran
2025-12-25 23:32:55 -05:00
parent 36cf5b65fa
commit 2e18137b5b
3 changed files with 41 additions and 1 deletions

View File

@@ -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 = () => {
}
/>
<Route path="/faq" element={<FAQ />} />
<Route path="*" element={<NotFound />} />
</Routes>
</main>
<Footer />