Merge pull request 'start nincs' (#86) from navbar+aboutű into main

Reviewed-on: #86
HALLOD UGYES VAGY :)
This commit was merged in pull request #86.
This commit is contained in:
2025-11-03 17:56:53 +00:00
5 changed files with 522 additions and 5 deletions
+5 -1
View File
@@ -15,10 +15,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)
@@ -68,6 +70,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>