-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathartists.js
More file actions
33 lines (32 loc) · 848 Bytes
/
artists.js
File metadata and controls
33 lines (32 loc) · 848 Bytes
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
/**
* artists.js
*
* The app's list of Artists
*/
window.artists = [
{
artistId: "AID-001",
name: "Habib Wahid",
urls: [
{ title: "Facebook", url: "https://www.facebook.com/habibwahid" },
{ title: "YouTube", url: "https://www.youtube.com/@HabibWahidofficial" }
]
},
{
artistId: "AID-002",
name: "Tahsan",
urls: [
{ title: "Facebook", url: "https://www.facebook.com/tahsanfans" },
{ title: "Soundcloud", url: "https://soundcloud.com/tahsanfans" },
{ title: "YouTube", url: "https://www.youtube.com/@tahsantv/videos" }
]
},
{
artistId: "AID-003",
name: "Arnob",
urls: [
{ title: "Facebook", url: "https://www.facebook.com/arnobshayanchowdhury" },
{ title: "Spotify", url: "https://open.spotify.com/artist/526OE3oezxDPkbueSKXHi0?nd=1" }
]
}
];