+ )
+}
diff --git a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx
index 263e0b5..fbab39a 100644
--- a/pac-man-board-game/ClientApp/src/components/gameComponent.tsx
+++ b/pac-man-board-game/ClientApp/src/components/gameComponent.tsx
@@ -18,7 +18,11 @@ const wsService = new WebSocketService(import.meta.env.VITE_API_WS);
// TODO bug, first player can sometimes roll dice twice
// TODO bug, when refreshing page, some data is missing until other clients make a move
// TODO bug, stolen pellets are only updated on the client that stole them
+// TODO bug, when navigating to lobby from the navbar while not logged in, the page is blank instead of redirecting to login
+// TODO spawns should be the same color as the player
+// TODO better front page
+// TODO smaller map to fit button and dice on screen
// TODO guest users
// TODO store map in backend and save it in state on each client
// TODO add debug menu on dev, for testing and cheating
diff --git a/pac-man-board-game/ClientApp/src/index.tsx b/pac-man-board-game/ClientApp/src/index.tsx
index dacc084..215e774 100644
--- a/pac-man-board-game/ClientApp/src/index.tsx
+++ b/pac-man-board-game/ClientApp/src/index.tsx
@@ -5,6 +5,7 @@ import {App} from './App';
// @ts-ignore
import reportWebVitals from './reportWebVitals';
import {DevTools} from "jotai-devtools";
+import DebugMenu from "./components/debugMenu";
const baseUrl = document.getElementsByTagName('base')[0].getAttribute('href');
const rootElement = document.getElementById('root');
@@ -14,6 +15,7 @@ const root = createRoot(rootElement);
root.render(
+ );
diff --git a/pac-man-board-game/ClientApp/src/pages/game.tsx b/pac-man-board-game/ClientApp/src/pages/game.tsx
index 844b6bf..752d4a6 100644
--- a/pac-man-board-game/ClientApp/src/pages/game.tsx
+++ b/pac-man-board-game/ClientApp/src/pages/game.tsx
@@ -3,7 +3,7 @@ import {GameComponent} from "../components/gameComponent";
import {useAtomValue} from "jotai";
import {selectedMapAtom, thisPlayerAtom} from "../utils/state";
-const Game: FC = () => {
+const GamePage: FC = () => {
const player = useAtomValue(thisPlayerAtom);
const map = useAtomValue(selectedMapAtom);
@@ -14,4 +14,4 @@ const Game: FC = () => {
}
};
-export default Game;
+export default GamePage;
diff --git a/pac-man-board-game/ClientApp/src/pages/home.tsx b/pac-man-board-game/ClientApp/src/pages/home.tsx
index fcb5de7..0916e8d 100644
--- a/pac-man-board-game/ClientApp/src/pages/home.tsx
+++ b/pac-man-board-game/ClientApp/src/pages/home.tsx
@@ -1,42 +1,27 @@
-import React, {FC, useRef} from "react";
-import Player from "../game/player";
-import Input from "../components/input";
-import Dropdown from "../components/dropdown";
-import {Colour, getColours} from "../game/colour";
-import {useNavigate} from "react-router-dom";
-import {useSetAtom} from "jotai";
+import React, {FC} from "react";
+import {Link} from "react-router-dom";
+import {useAtomValue} from "jotai";
import {thisPlayerAtom} from "../utils/state";
-const Home: FC = () => {
-
- const input = useRef(null);
- const dropdown = useRef(null);
- const setPlayer = useSetAtom(thisPlayerAtom);
- const navigate = useNavigate();
-
- function formHandler(): void {
- if (!input.current || !dropdown.current) return;
- const player = new Player({
- username: input.current.value,
- colour: dropdown.current.value as Colour,
- });
- setPlayer(player);
- navigate("/game");
- }
+const HomePage: FC = () => {
+ const player = useAtomValue(thisPlayerAtom);
return (
- <>
-