diff --git a/src/data/songs.js b/src/data/songs.js index 95b15a2..883629c 100644 --- a/src/data/songs.js +++ b/src/data/songs.js @@ -45,5 +45,41 @@ export const songs = [ name: 'Let it Bleed', cover: 'let-it-bleed.jpg' } - } + }, + { + title: 'Planet Caravan', + filename: `${HOSTING_URL}ipkoupcos7hsuph/planet-caravan.mp3?dl=0`, + artist: 'Pantera', + album: { + name: 'Far Beyond Driven', + cover: 'far-beyond-driven.jpeg' + } + }, + { + title: 'Ouch', + filename: `${HOSTING_URL}2m2uopq9jskl0jj/ouch.mp3?dl=0`, + artist: 'Bring Me The Horizon', + album: { + name: 'amo', + cover: 'amo.jpeg' + } + }, + { + title: 'Zeitgeist', + filename: `${HOSTING_URL}udwou3jm08cuis0/zeitgeist.mp3?dl=0`, + artist: 'Black Sabbath', + album: { + name: '13', + cover: '13.jpeg' + } + }, + { + title: 'Friends', + filename: `${HOSTING_URL}zcet6mgfvdwms45/friends.mp3?dl=0`, + artist: 'Led Zeppelin', + album: { + name: 'Led Zeppelin III', + cover: 'led-zeppelin-3.jpeg' + } + }, ] \ No newline at end of file diff --git a/src/helpers/song.js b/src/helpers/song.js index 034cc7e..3c98e30 100644 --- a/src/helpers/song.js +++ b/src/helpers/song.js @@ -31,4 +31,4 @@ export const showError = () => { notyf.error('Please pick a song'); } -export const MODE = ['normal', 'random', 'single']; \ No newline at end of file +export const PLAY_MODE = ['normal', 'random', 'single']; \ No newline at end of file diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte index 3de8122..235803f 100644 --- a/src/routes/__layout.svelte +++ b/src/routes/__layout.svelte @@ -23,7 +23,7 @@