diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-07-01 18:31:01 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-07-01 18:31:01 -0700 |
| commit | aa2807d370cdd3d52c2af6cf3cfde3a9600807fb (patch) | |
| tree | d24148b985fb30053fd6a034490752163a2885f3 /site/src/App.tsx | |
| parent | d171a3c14802e319ffa561ebc899ecc440611052 (diff) | |
add not found pages for site and feed
Diffstat (limited to 'site/src/App.tsx')
| -rw-r--r-- | site/src/App.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/site/src/App.tsx b/site/src/App.tsx index 79c64a1..b6823a6 100644 --- a/site/src/App.tsx +++ b/site/src/App.tsx @@ -1,5 +1,6 @@ import Home from './pages/Homepage'; import GameSelector from './pages/GameSelector' +import NotFound from './pages/NotFound'; import { Routes, Route } from "react-router-dom"; function App() { @@ -8,6 +9,7 @@ function App() { <Route path="/" element={<Home />} /> <Route path="/games" element={<GameSelector />} /> <Route path="/game/:gameId" element={<Home />} /> + <Route path="*" element={<NotFound />} /> </Routes> ); } |
