Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | import { ITrack } from "types/spotify"; export const artist = { img: "https://studiosol-a.akamaihd.net/uploadfile/letras/fotos/6/1/c/a/61ca1dcbc2cdda2af430927f4fe4b98c.jpg", title: "Artist", subTitle: "Billie Eilish", href: "/artist/1", }; export const playlists = [ { id: "1", uri: "spotify:playlist:1", name: "playlist 1", owner: { id: "12133024755", display_name: "Marco Madera" }, }, { id: "2", uri: "spotify:playlist:2", name: "playlist 2", owner: { id: "12133024755", display_name: "Marco Madera" }, }, { id: "3", uri: "spotify:playlist:3", name: "playlist 3", owner: { id: "12133024755", display_name: "Marco Madera" }, }, { id: "4", uri: "spotify:playlist:4", name: "playlist 4", owner: { id: "12133024755", display_name: "Marco Madera" }, }, ]; export const track: ITrack = { album: { id: "0YsnO662yMAjaOa99vxBug", images: [ { height: 640, url: "https://i.scdn.co/image/ab67616d0000b273dc214b2049cae8b60229207c", width: 640, }, { height: 300, url: "https://i.scdn.co/image/ab67616d00001e02dc214b2049cae8b60229207c", width: 300, }, { height: 64, url: "https://i.scdn.co/image/ab67616d00004851dc214b2049cae8b60229207c", width: 64, }, ], name: "Океан", release_date: "2015-08-31", type: "album", uri: "spotify:album:0YsnO662yMAjaOa99vxBug", }, artists: [ { id: "11sIz9STeD6yVSuBaD8nMW", name: "Artem Pivovarov", type: "artist", uri: "spotify:artist:11sIz9STeD6yVSuBaD8nMW", }, ], duration_ms: 234180, explicit: false, id: "1pCblJqsFVRNc9Xmg0oQz8", is_local: false, is_playable: true, name: "Собирай меня", popularity: 42, preview_url: "https://p.scdn.co/mp3-preview/cfa1f1a97bbb1146b837fffcb03e93f5dd6c6cc9?cid=4131d07903c94ae5b560db44fc1fed20", type: "track", uri: "spotify:track:1pCblJqsFVRNc9Xmg0oQz8", }; |