Added first steps towards user auth to the app

This commit is contained in:
Noah Knapp 2025-08-02 05:08:21 +02:00
parent db8ab4e166
commit fb355414ab
5 changed files with 66 additions and 5 deletions

View file

@ -14,7 +14,7 @@ function App() {
<Route path="/" element={<Home />} />
<Route path="/create-station" element={<CreateStation />} />
<Route path="/join-station" element={<JoinStation />} />
<Route path="/station/:id" element={<StationPage />} />
<Route path="/station/:id/:user_name" element={<StationPage />} />
</Routes>
</Router>
</div>