start nincs

This commit is contained in:
2025-11-03 18:55:37 +01:00
parent 39e0d36a7f
commit 5d83588470
5 changed files with 522 additions and 5 deletions
+5 -1
View File
@@ -14,10 +14,12 @@ 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"
import Lobby from "./pages/Game/Lobby"
import ProfileCard from "./components/Userdetails/Userdetails"
import { ToastConfig } from "./components/Toastify/toastifyServices" // ✅ fontos: named import, nem default!
import VerifyEmailPage from "./pages/Auth/VerifyEmailPage"
import ChooseDeck from "./pages/Game/ChooseDeck"
import PlayerSetup from "./pages/Game/PlayerSetup"
function App() {
const [isMobile, setIsMobile] = useState(false)
@@ -66,6 +68,8 @@ function App() {
<Route path="/game" element={<GameScreen />} />
{/* <Route path="/contacts" element={<CompanyHub />} /> */}
<Route path="/report" element={<Reports />} />
<Route path="/choosedeck" element={<ChooseDeck />} />
<Route path="/playersetup" element={<PlayerSetup />} />
</Routes>
</Router>