diff --git a/src/routes/meta/music-rotation/+page.svelte b/src/routes/meta/music-rotation/+page.svelte index 7d38a64..9742367 100644 --- a/src/routes/meta/music-rotation/+page.svelte +++ b/src/routes/meta/music-rotation/+page.svelte @@ -1,6 +1,7 @@ @@ -16,4 +17,9 @@

content coming soon.

The Gadgetron vendor from Ratchet & Clank on PlayStation 2 looking bored. + + diff --git a/src/routes/meta/music-rotation/rotation.ts b/src/routes/meta/music-rotation/rotation.ts new file mode 100644 index 0000000..29d2bfe --- /dev/null +++ b/src/routes/meta/music-rotation/rotation.ts @@ -0,0 +1,190 @@ +export interface Entry { + title: string; + artist: string; + releaseYear: number; + artwork: string; + description: string[]; + favouriteTracks: string[]; +} + +export let entries: Entry[] = [ + { + title: "A Place Where Mountains Hide", + artist: "acloudyskye", + releaseYear: 2019, + artwork: "askye_apwmh", + description: [ + "", + ], + favouriteTracks: [ + "", + ] + }, + { + title: "Blood Rushing Like Current Through a Powerline", + artist: "acloudyskye", + releaseYear: 2021, + artwork: "askye_brlctap", + description: [ + "", + ], + favouriteTracks: [ + "", + ] + }, + { + title: "What Do You Want!", + artist: "acloudyskye", + releaseYear: 2022, + artwork: "askye_wdyw", + description: [ + "", + ], + favouriteTracks: [ + "Curses", + "Safety!", + "Overthrower", + "Thief!", + ] + }, + { + title: "There Must Be Something Here", + artist: "acloudyskye", + releaseYear: 2024, + artwork: "askye_tmbsh", + description: [ + "", + ], + favouriteTracks: [ + "Relay", + "Surface", + "Flares", + "Ditch", + ] + }, + { + title: "This Won't Be The Last Time", + artist: "acloudyskye", + releaseYear: 2025, + artwork: "askye_twbtlt", + description: [ + "", + ], + favouriteTracks: [ + "Float", + "Innards", + ] + }, + { + title: "True", + artist: "Avicii", + releaseYear: 2013, + artwork: "avicii_true", + description: [ + "", + ], + favouriteTracks: [ + "Wake Me Up", + "Dear Boy", + ] + }, + { + title: "it's hard to see color [When You're So Impossibly Far Away*]", + artist: "Jaron", + releaseYear: 2022, + artwork: "jaron/ihtsc", + description: [ + "", + ], + favouriteTracks: [ + "When Everything is Grey", + "de4th\\__* Spirit", + "743⁺Aether*✧ ˳ ⁎ ¹¹¹} ⁺ . ˳", + "WIRES222", + "NOWNEVER", + "Love [in Every Single Way]", + ] + }, + { + title: "LIGHTYEARS", + artist: "Jaron", + releaseYear: 2024, + artwork: "jaron/lightyears", + description: [ + "", + ], + favouriteTracks: [ + "LIGHTYEARS", + "SPINNING", + "ICARUS", + "STARS", + ] + }, + { + title: "", + artist: "", + releaseYear: 202, + artwork: "", + description: [ + "", + ], + favouriteTracks: [ + "", + ] + }, + { + title: "fishmonger", + artist: "underscores", + releaseYear: 2021, + artwork: "underscores/fishmonger", + description: [ + "fishmonger is an album I started listening to about a year after it released, when I had my first job after quitting my computer science program. It joined my life in a time where I didn't really know what to do myself.", + "On one hand, I like the album because it was the start of finding a new home within music where I felt comfortable; finding new artists that I enjoyed listening to. At the same time, fishmonger was there for me in a time where I had to figure myself out and decide where to take my life. It's a journey that's still ongoing, but I've made great progress, and the stability and comfort I got through music like this helped immensely.", + ], + favouriteTracks: [ + "Kinkos field trip 2006", + "Dry land 2001", + ] + }, + { + title: "", + artist: "", + releaseYear: 202, + artwork: "", + description: [ + "", + ], + favouriteTracks: [ + "", + ] + }, + { + title: "The Univa Trilogy", + artist: "TURQUOISEDEATH", + releaseYear: 2025, + artwork: "", + description: [ + "The only regret I have with this album is that I didn't start listening to it sooner.", + "I bought The Univa Trilogy on a whim during my abroad semester in England because I liked a few select songs, but due to its length of almost 3 hours, I didn't listen to it until a long train trip three months after my abroad semester ended. On my train trip back, I listened to it again.", + "This album takes you into a world you can just lose yourself in. The long, dreamy tracks create this amazing immersive atmosphere. If you have the time for it, and if you're into drum & bass, I absolutely recommend giving it a try.", + ], + favouriteTracks: [ + "The Sky Fell", + "Guessabelle", + "Guardian Surface", + ] + }, + { + title: "Ghostholding", + artist: "venturing", + releaseYear: 202, + artwork: "venturing/ghostholding", + description: [ + "", + ], + favouriteTracks: [ + "Dead forever", + "Sister", + ] + }, +]; \ No newline at end of file