From 705792a4cbef9706d0f22d2610e926b8ec38ce7e Mon Sep 17 00:00:00 2001 From: hobokenchicken Date: Fri, 5 Jun 2026 15:48:33 -0400 Subject: [PATCH] fix(lofi): update to working YouTube video IDs Old Lofi Girl streams were taken down. Updated to active streams: - 7NOSDKb0HlU: lofi hip hop radio - MCkTebktHVc: Chill lofi (College Music) - KMXZF-K2mus: 24/7 beats --- frontend/src/components/MusicPlayer.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/MusicPlayer.tsx b/frontend/src/components/MusicPlayer.tsx index de464d3..2b2c895 100644 --- a/frontend/src/components/MusicPlayer.tsx +++ b/frontend/src/components/MusicPlayer.tsx @@ -8,9 +8,9 @@ interface Playlist { } const LOFI_PLAYLISTS: Playlist[] = [ - { id: 'lofi-girl', name: 'lofi hip hop radio', videoId: 'jfKfPfyJRdk', icon: '🎧' }, - { id: 'lofi-chill', name: 'Chill lofi', videoId: '5qap5aO4i9A', icon: '🎵' }, - { id: 'lofi-synth', name: 'Synthwave lofi', videoId: 'MVPTmgNG4x0', icon: '🌃' }, + { id: 'lofi-girl', name: 'lofi hip hop radio', videoId: '7NOSDKb0HlU', icon: '🎧' }, + { id: 'lofi-chill', name: 'Chill lofi', videoId: 'MCkTebktHVc', icon: '🎵' }, + { id: 'lofi-synth', name: 'Synthwave lofi', videoId: 'KMXZF-K2mus', icon: '🌃' }, ]; declare global {