This commit is contained in:
gpt-engineer-app[bot]
2026-01-02 21:32:32 +00:00
parent 467e4a53d1
commit f0defcbaa1
6 changed files with 460 additions and 14 deletions
+2
View File
@@ -29,6 +29,7 @@ const Leaderboard = lazy(() => import("./pages/Leaderboard"));
const Tetris = lazy(() => import("./pages/Tetris"));
const Pacman = lazy(() => import("./pages/Pacman"));
const Snake = lazy(() => import("./pages/Snake"));
const SnakeMultiplayer = lazy(() => import("./pages/SnakeMultiplayer"));
const Breakout = lazy(() => import("./pages/Breakout"));
const Music = lazy(() => import("./pages/Music"));
const Oscilloscope = lazy(() => import("./pages/Oscilloscope"));
@@ -124,6 +125,7 @@ const AppContent = () => {
<Route path="games/tetris" element={<Tetris />} />
<Route path="games/pacman" element={<Pacman />} />
<Route path="games/snake" element={<Snake />} />
<Route path="games/snake-2p" element={<SnakeMultiplayer />} />
<Route path="games/breakout" element={<Breakout />} />
<Route path="faq" element={<FAQ />} />
<Route path="music" element={<Music />} />