add many things

This commit is contained in:
ordinarthur 2026-04-13 15:52:17 +02:00
parent 5ea5a390ce
commit 3ac0f4f214

View File

@ -14,6 +14,15 @@ import { Favorites } from '@/pages/Favorites'
import { Settings } from '@/pages/Settings'
import { MyPodcasts } from '@/pages/MyPodcasts'
import { Offline } from '@/pages/Offline'
import { Trending } from '@/pages/Trending'
import { Following } from '@/pages/Following'
import { ForYou } from '@/pages/ForYou'
import { Playlists } from '@/pages/Playlists'
import { PlaylistDetail } from '@/pages/PlaylistDetail'
import { Notifications } from '@/pages/Notifications'
import { ShowDetail } from '@/pages/ShowDetail'
import { MyShows } from '@/pages/MyShows'
import { Dashboard } from '@/pages/Dashboard'
export default function App() {
const { setUser, fetchProfile } = useAuthStore()
@ -58,6 +67,15 @@ export default function App() {
<Route path="favorites" element={<Favorites />} />
<Route path="my-podcasts" element={<MyPodcasts />} />
<Route path="settings" element={<Settings />} />
<Route path="trending" element={<Trending />} />
<Route path="following" element={<Following />} />
<Route path="for-you" element={<ForYou />} />
<Route path="playlists" element={<Playlists />} />
<Route path="playlist/:id" element={<PlaylistDetail />} />
<Route path="notifications" element={<Notifications />} />
<Route path="show/:id" element={<ShowDetail />} />
<Route path="my-shows" element={<MyShows />} />
<Route path="dashboard" element={<Dashboard />} />
<Route path="offline" element={<Offline />} />
</Route>
</Routes>