aboutsummaryrefslogtreecommitdiffstats
path: root/site/src/App.tsx
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-07-01 18:31:01 -0700
committerPinapelz <yukais@pinapelz.com>2025-07-01 18:31:01 -0700
commitaa2807d370cdd3d52c2af6cf3cfde3a9600807fb (patch)
treed24148b985fb30053fd6a034490752163a2885f3 /site/src/App.tsx
parentd171a3c14802e319ffa561ebc899ecc440611052 (diff)
add not found pages for site and feed
Diffstat (limited to 'site/src/App.tsx')
-rw-r--r--site/src/App.tsx2
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>
);
}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage