This commit is contained in:
2025-10-20 17:14:37 +02:00
parent 96487fb065
commit 1bf3253128
3 changed files with 98 additions and 1 deletions
+2
View File
@@ -15,6 +15,7 @@ import About from "./pages/About/About"
import ScrollToTop from "./components/ScrollToTop"
import GameScreen from "./pages/Game/GameScreen"
import Reports from "./pages/Report/Reports"
import Lobby from "./pages/Lobby/Lobby"
function App() {
const [isMobile, setIsMobile] = useState(false)
@@ -46,6 +47,7 @@ function App() {
<Router>
<Routes>
<Route path="/about" element={<About />} />
<Route path="/lobby" element={<Lobby />} />
<Route path="/register" element={<AuthRegister />} />
<Route path="/login" element={<AuthLogin />} />
<Route path="/verify-email" element={<EmailVerification />} />