feat: design for queue, add songs, search and more

This commit is contained in:
2026-09-01 15:33:21 +02:00
parent 3a0f8210dd
commit faa271edd6
19 changed files with 251 additions and 34 deletions
+26 -3
View File
@@ -1,10 +1,33 @@
<script setup lang="ts">
import PlayerControls from '@/components/PlayerControls.vue';
import QueueViewer from '@/components/QueueViewer.vue';
</script>
<template>
<div>
<h1>Player</h1>
<QueueViewer />
<div class="main-app">
<div class="player-controls">
<PlayerControls />
</div>
<div class="song-queue">
<QueueViewer />
</div>
</div>
</template>
<style lang="scss" scoped>
.main-app {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
.player-controls {
width: 60%;
}
.song-queue {
width: 80%;
}
}
</style>