-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
143 lines (142 loc) · 3.65 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
export const collectionOldPopSongs = [
{
name: "Alone Again (Naturally)",
singer: "Gilbert O'Sullivan",
path: "./assets/music/gilbert-osullivan.mp3",
image: "./assets/img/gilbert-osullivan.jpg",
},
{
name: "Raindrops Keep Falling On My Head",
singer: "B.J.Thomas",
path: "./assets/music/bj-thomas.mp3",
image: "./assets/img/bj-thomas.jpg",
},
{
name: "Close To You",
singer: "The Carpenters",
path: "./assets/music/Close-To-You.mp3",
image: "./assets/img/Close-To-You.jpg",
},
{
name: "Can't Help Falling In Love",
singer: "Elvis Presley",
path: "./assets/music/elvis-presley.mp3",
image: "./assets/img/elvis-presley.jpg",
},
{
name: "Oh, Pretty Woman",
singer: "Roy Orbison",
path: "./assets/music/roy-orbison.mp3",
image: "./assets/img/roy-orbison.jpg",
},
{
name: "Can't take my eyes off you",
singer: "Morten Harket",
path: "./assets/music/morten-harket.mp3",
image: "./assets/img/morten-harket.jpg",
},
{
name: "Lemon Tree",
singer: "Fools Garden",
path: "./assets/music/lemon-tree.mp3",
image: "./assets/img/lemon-tree.jpg",
},
{
name: "A Lover's concerto",
singer: "Sarah Vaughan",
path: "./assets/music/a-lovers-concerto.mp3",
image: "./assets/img/a-lovers-concerto.jpg",
},
{
name: "Sugar Sugar",
singer: "Ron Dante, The Archies",
path: "./assets/music/sugar-sugar.mp3",
image: "./assets/img/sugar-sugar.jpg",
},
{
name: "Can't Smile Without You",
singer: "Barry Manilow",
path: "./assets/music/barry-manilow.mp3",
image: "./assets/img/barry-manilow.jpg",
},
{
name: "Yesterday Once More",
singer: "The Carpenters",
path: "./assets/music/carpenters.mp3",
image: "./assets/img/carpenters.jpg",
},
{
name: "Boogie Wonderland",
singer: "Earth, Wind & Fire",
path: "./assets/music/boogie-wonderland.mp3",
image: "./assets/img/boogie-wonderland.jpg",
},
{
name: "Nothing's Going to Change My Love For You",
singer: "Westlife",
path: "./assets/music/westlife.mp3",
image: "./assets/img/westlife.jpg",
},
{
name: "Only love",
singer: "Trademark",
path: "./assets/music/only-love.mp3",
image: "./assets/img/only-love.jpg",
},
{
name: "September",
singer: "Earth, Wind & Fire",
path: "./assets/music/earth-wind&fire.mp3",
image: "./assets/img/earth-wind&fire.jpg",
},
{
name: "What You Won’t Do For Love",
singer: "Bobby Caldwell",
path: "./assets/music/bobby-caldwell.mp3",
image: "./assets/img/bobby-caldwell.jpg",
},
];
export const songs = [
{
name: "Don't Look Back In Anger",
singer: "Oasis",
path: "./assets/music/oasis.mp3",
image: "./assets/img/oasis.jpg",
},
{
name: "Don't Look Back In Anger",
singer: "Oasis",
path: "./assets/music/oasis.mp3",
image: "./assets/img/oasis.jpg",
},
{
name: "Isn't She Lovely",
singer: "Stevie Wonder",
path: "./assets/music/stevie-wonder.mp3",
image: "./assets/img/stevie-wonder.jpg",
},
{
name: "A Little Bit Like Magic",
singer: "King Harvest",
path: "./assets/music/king-harvest.mp3",
image: "./assets/img/king-harvest.jpg",
},
{
name: "Country Road",
singer: "John Denver",
path: "./assets/music/john-denver.mp3",
image: "./assets/img/john-denver.jpg",
},
{
name: "Stand By Me",
singer: "Ben E. King",
path: "./assets/music/ben-e-king.mp3",
image: "./assets/img/ben-e-king.jpg",
},
{
name: "September",
singer: "Earth, Wind & Fire",
path: "./assets/music/earth-wind&fire.mp3",
image: "./assets/img/earth-wind&fire.jpg",
},
];