backup img

This commit is contained in:
2025-11-23 22:51:57 +00:00
parent 4492073038
commit 12f7a7a49e

View File

@@ -9,7 +9,7 @@
<script> <script>
function spotifyPlayer() { function spotifyPlayer() {
return { return {
album_image: "", album_image: "/img/Untitled.png",
artist_name: "", artist_name: "",
song_name: "", song_name: "",
playing: false, playing: false,
@@ -79,7 +79,7 @@
<div x-text="song_name || 'No song playing'"></div> <div x-text="song_name || 'No song playing'"></div>
<div x-text="artist_name"></div> <div x-text="artist_name"></div>
<div <div
x-text="playing ? 'Playing' : 'Paused'" x-text="playing ? 'Playing' : ''"
:class="{'playing': playing}" :class="{'playing': playing}"
></div> ></div>
</div> </div>