diff --git a/src/App.vue b/src/App.vue index 1a0f017..32fe171 100644 --- a/src/App.vue +++ b/src/App.vue @@ -8,9 +8,7 @@ > - -
@@ -53,8 +51,6 @@ export default { \ No newline at end of file diff --git a/src/components/FolderView/SearchBox.vue b/src/components/FolderView/SearchBox.vue new file mode 100644 index 0000000..1675ad7 --- /dev/null +++ b/src/components/FolderView/SearchBox.vue @@ -0,0 +1,68 @@ + + + + + \ No newline at end of file diff --git a/src/components/FolderView/SongList.vue b/src/components/FolderView/SongList.vue index d3dfc64..b6dde92 100644 --- a/src/components/FolderView/SongList.vue +++ b/src/components/FolderView/SongList.vue @@ -1,115 +1,126 @@ \ No newline at end of file diff --git a/src/components/LeftSidebar/PinnedStuff.vue b/src/components/LeftSidebar/PinnedStuff.vue index 8e45bdd..54884a0 100644 --- a/src/components/LeftSidebar/PinnedStuff.vue +++ b/src/components/LeftSidebar/PinnedStuff.vue @@ -126,7 +126,7 @@ export default { } #pinned-container .seperator { - color: var(--grey); + color: var(--seperator); } #pinned-container { diff --git a/src/data/folders.js b/src/data/folders.js new file mode 100644 index 0000000..8ef107f --- /dev/null +++ b/src/data/folders.js @@ -0,0 +1,24 @@ +const folders = [ + { + name: "Jim Reeves - 14 number 1s", + }, + { + name: "Nadina", + }, + { + name: "Lil Peep - Carlifornia girls", + }, + { + name: "Legends never die", + }, + { + name: "Flashback party", + }, + { + name: "HiFi Gold by Elton John", + }, +]; + +export default { + folders, +}; diff --git a/src/data/songs.js b/src/data/songs.js new file mode 100644 index 0000000..460d71f --- /dev/null +++ b/src/data/songs.js @@ -0,0 +1,24 @@ +const songs = [ + { + title: "Loved by the best", + album: "Love songs", + artists: ["Don Williams,", "Kenny Rogers"], + duration: "03:14", + }, + { + title: "Loved by the best", + album: "Love songs", + artists: ["Don Williams"], + duration: "03:14", + }, + { + title: "Loved by the best", + album: "Love songs", + artists: ["Don Williams"], + duration: "03:14", + }, +]; + +export default { + songs +} \ No newline at end of file diff --git a/src/views/FolderView.vue b/src/views/FolderView.vue index d93f089..56d012a 100644 --- a/src/views/FolderView.vue +++ b/src/views/FolderView.vue @@ -1,19 +1,23 @@ \ No newline at end of file