chore: move stuff to its own component

This commit is contained in:
2025-04-17 19:01:12 +02:00
parent a8cbb54d29
commit af980e74d4
2 changed files with 8 additions and 4 deletions

View File

@@ -1,9 +1,7 @@
<script>
import Button from "@/components/ui/button/button.svelte";
import Pause from '@lucide/svelte/icons/pause'
import MusicPlayer from "@/components/app/music-player.svelte";
</script>
<div class="fixed bottom-5 left-2 right-2 z-50 flex items-center justify-between p-4 bg-white/10 backdrop-blur-lg rounded-xl shadow-lg">
<Button size="icon"><Pause /></Button>
<MusicPlayer />
</div>

View File

@@ -0,0 +1,6 @@
<script>
import { Button } from "@/components/ui/button";
import Pause from "@lucide/svelte/icons/pause";
</script>
<Button size="icon"><Pause /></Button>