created structure and added some entries for music rotation
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
<script lang="ts">
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
import ReactionQuote from "$lib/components/reaction-quote.svelte";
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
@@ -16,4 +17,9 @@
|
||||
<p>content coming soon.</p>
|
||||
|
||||
<img src="/common/gadgetron.webp" alt="The Gadgetron vendor from Ratchet & Clank on PlayStation 2 looking bored.">
|
||||
|
||||
<ReactionQuote
|
||||
reaction="pointing"
|
||||
text="if the favourite tracks here differ from those I put on my Bandcamp profile, consider the ones here to be correct."
|
||||
/>
|
||||
</Content>
|
||||
|
||||
190
src/routes/meta/music-rotation/rotation.ts
Normal file
190
src/routes/meta/music-rotation/rotation.ts
Normal file
@@ -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: [
|
||||
"<i>fishmonger</i> 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, <i>fishmonger</i> 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 <i>The Univa Trilogy</i> 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",
|
||||
]
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user