Replaces words with emoji. Formatting enhancements for play/pause buttons. Switched to lower fidelity audio stream for better performance.

This commit is contained in:
2026-04-28 02:22:25 +00:00
parent 2b0b043d3d
commit 4bbcc7d537
3 changed files with 12 additions and 5 deletions
+4 -4
View File
@@ -48,11 +48,11 @@ export default function HomePage() {
</p>
<div className="controls">
<button type="button" onClick={() => void player.play(backgroundMode)} disabled={isPlaying}>
Play
<button type="button" className='playpause' onClick={() => void player.play(backgroundMode)} disabled={isPlaying}>
</button>
<button type="button" onClick={() => player.stop()} disabled={!isPlaying}>
Stop
<button type="button" className='playpause' onClick={() => player.stop()} disabled={!isPlaying}>
</button>
</div>