diff --git a/src/lib/components/custom/PlayerControls.svelte b/src/lib/components/custom/PlayerControls.svelte new file mode 100644 index 0000000..ef40d6b --- /dev/null +++ b/src/lib/components/custom/PlayerControls.svelte @@ -0,0 +1,29 @@ + + + + +
+ {#if mounted} +

Paused: {audio.paused}

+

Volume: {audio.volume}

+

Duration: {audio.duration}

+ {#if audio.paused} + + {:else} + + {/if} + {:else} +

Nothing going on here

+ {/if} +
diff --git a/src/lib/components/custom/PlayerSidebar.svelte b/src/lib/components/custom/PlayerSidebar.svelte new file mode 100644 index 0000000..ad886c2 --- /dev/null +++ b/src/lib/components/custom/PlayerSidebar.svelte @@ -0,0 +1,32 @@ + + + + +
+
+

Albums

+

All

+

Random

+

Favourites

+

Top Rated

+

Recently Added

+

Recently Played

+

Most Played

+
+ +

Artists

+

Songs

+

Radios

+

Shares

+ +

Playlists

+ {#each playlists as playlist} +

{playlist}

+ {/each} +
\ No newline at end of file