From aa2807d370cdd3d52c2af6cf3cfde3a9600807fb Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Tue, 1 Jul 2025 18:31:01 -0700 Subject: add not found pages for site and feed --- site/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'site/src/App.tsx') 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() { } /> } /> } /> + } /> ); } -- cgit v1.2.3