-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsongs.js
More file actions
84 lines (83 loc) · 2.51 KB
/
songs.js
File metadata and controls
84 lines (83 loc) · 2.51 KB
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
export const spotifyLibrary = [
{
id: "1",
title: "Lost in the City",
artist: "Lofi Girl",
album: "Chilled Cow",
duration: "3:20",
cover: "https://picsum.photos/id/10/300/300",
url: "https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3"
},
{
id: "2",
title: "Neon Dreams",
artist: "Synthwave Kid",
album: "Retro Future",
duration: "4:05",
cover: "https://picsum.photos/id/20/300/300",
url: "https://www.soundhelix.com/examples/mp3/SoundHelix-Song-2.mp3"
},
{
id: "3",
title: "Mountain High",
artist: "Acoustic Soul",
album: "Nature's Path",
duration: "2:55",
cover: "https://picsum.photos/id/30/300/300",
url: "https://www.soundhelix.com/examples/mp3/SoundHelix-Song-3.mp3"
},
{
id: "4",
title: "Midnight Jazz",
artist: "Blue Note Duo",
album: "Late Night Sessions",
duration: "5:12",
cover: "https://picsum.photos/id/40/300/300",
url: "https://www.soundhelix.com/examples/mp3/SoundHelix-Song-4.mp3"
},
{
id: "5",
title: "Electric Pulse",
artist: "Digital Ghost",
album: "Code Runner",
duration: "3:45",
cover: "https://picsum.photos/id/50/300/300",
url: "https://www.soundhelix.com/examples/mp3/SoundHelix-Song-5.mp3"
},
{
id: "6",
title: "Ocean Waves",
artist: "Zen Master",
album: "Meditation",
duration: "6:30",
cover: "https://picsum.photos/id/60/300/300",
url: "https://www.soundhelix.com/examples/mp3/SoundHelix-Song-8.mp3"
},
{
id: "7",
title: "Golden Hour",
artist: "Summer Vibes",
album: "Beach Party",
duration: "3:15",
cover: "https://picsum.photos/id/70/300/300",
url: "https://www.soundhelix.com/examples/mp3/SoundHelix-Song-10.mp3"
},
{
id: "8",
title: "Cyberpunk",
artist: "Glitch Mob",
album: "System Failure",
duration: "4:22",
cover: "https://picsum.photos/id/80/300/300",
url: "https://www.soundhelix.com/examples/mp3/SoundHelix-Song-12.mp3"
},
{
id: "9",
title: "Rainy Sunday",
artist: "Piano Dreams",
album: "Soft Keys",
duration: "3:50",
cover: "https://picsum.photos/id/90/300/300",
url: "https://www.soundhelix.com/examples/mp3/SoundHelix-Song-14.mp3"
},
];