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