feat(ui): [WIP] replace buttons with links in sidebar
This commit is contained in:
parent
7c07f87cfd
commit
95dd23dbd0
|
@ -99,28 +99,29 @@ const uploads = useUploadsStore()
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3>Explore</h3>
|
<h3>Explore</h3>
|
||||||
|
|
||||||
<nav class="button-list">
|
<nav class="button-list">
|
||||||
<Link to="/content"
|
<Link to="/library"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
icon="bi-compass"
|
icon="bi-compass"
|
||||||
>
|
>
|
||||||
All Funkwhale
|
All of Funkwhale
|
||||||
</Link>
|
</Link>
|
||||||
<Button
|
<Link to="/library/music"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
icon="bi-music-note-beamed"
|
icon="bi-music-note-beamed"
|
||||||
>
|
>
|
||||||
Music
|
Music
|
||||||
</Button>
|
</Link>
|
||||||
<Button
|
<Link to="/library/podcasts"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
icon="bi-mic"
|
icon="bi-mic"
|
||||||
>
|
>
|
||||||
Podcasts
|
Podcasts
|
||||||
</Button>
|
</Link>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<h3>Library</h3>
|
<h3>Library</h3>
|
||||||
|
|
Loading…
Reference in New Issue