From e2cb8845b0c06c82e04876696ff040e4fd66317a Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Thu, 23 Oct 2025 22:17:26 +0200 Subject: [PATCH] Fetch track thumbnails remotely --- src/components/Nav.astro | 6 +- src/components/TableOfContents.astro | 2 +- src/components/Track.astro | 40 +- src/content.config.ts | 16 +- .../ARY, Liaze - Ticket nach Ketama.jpeg | Bin 69270 -> 0 bytes .../album-covers/BOCIGE, DYLAN - Desire.jpeg | Bin 40231 -> 0 bytes .../Beamon - lights in a hall.jpeg | Bin 41891 -> 0 bytes .../Black Smurf - And So It Was.jpeg | Bin 26132 -> 0 bytes .../CH4YN - Too Lost To Be Found.jpeg | Bin 14105 -> 0 bytes ...lvin Harris, Ellie Goulding - Miracle.jpeg | Bin 44845 -> 0 bytes ...Daniel Caesar, Mustafa - Toronto 2014.jpeg | Bin 82494 -> 0 bytes .../Dead Dawg, BHZ, Monk - Festnetz.jpeg | Bin 56018 -> 0 bytes .../GDS, Juice Wrld - Underworld.jpeg | Bin 15541 -> 0 bytes .../Guns N' Roses - Sweet Child O' Mine.jpeg | Bin 48846 -> 0 bytes .../Jgrxxn, Lil Xav - Lost In Da Wind.jpeg | Bin 50357 -> 0 bytes .../album-covers/Miscél, Hanz - Clouds.jpeg | Bin 58339 -> 0 bytes .../album-covers/Motat - War Clips.jpeg | Bin 55682 -> 0 bytes .../album-covers/NEFFEX - Destiny.jpeg | Bin 69527 -> 0 bytes .../album-covers/SLIGHT - DREAMIN.jpeg | Bin 98189 -> 0 bytes .../XXXTENTACION - vice city.jpeg | Bin 51338 -> 0 bytes .../Xavier Wulf, Bones - Weather Man.jpeg | Bin 21592 -> 0 bytes .../album-covers/YFG Pave - Jinzo.jpeg | Bin 41631 -> 0 bytes src/content/album-covers/arya x - hide.jpeg | Bin 42753 -> 0 bytes .../album-covers/ilyTOMMY - My Girl.jpeg | Bin 71422 -> 0 bytes src/content/album-covers/makko - Ewig.jpeg | Bin 23009 -> 0 bytes .../index.md | 1 - src/content/index.md | 6 +- src/content/services.md | 7 + src/content/tracks.json | 5090 ++++++++++++++++- src/pages/rss.xml.ts | 16 +- src/pages/services.astro | 11 + src/pages/tracks.astro | 18 +- 32 files changed, 5068 insertions(+), 145 deletions(-) delete mode 100644 src/content/album-covers/ARY, Liaze - Ticket nach Ketama.jpeg delete mode 100644 src/content/album-covers/BOCIGE, DYLAN - Desire.jpeg delete mode 100644 src/content/album-covers/Beamon - lights in a hall.jpeg delete mode 100644 src/content/album-covers/Black Smurf - And So It Was.jpeg delete mode 100644 src/content/album-covers/CH4YN - Too Lost To Be Found.jpeg delete mode 100644 src/content/album-covers/Calvin Harris, Ellie Goulding - Miracle.jpeg delete mode 100644 src/content/album-covers/Daniel Caesar, Mustafa - Toronto 2014.jpeg delete mode 100644 src/content/album-covers/Dead Dawg, BHZ, Monk - Festnetz.jpeg delete mode 100644 src/content/album-covers/GDS, Juice Wrld - Underworld.jpeg delete mode 100644 src/content/album-covers/Guns N' Roses - Sweet Child O' Mine.jpeg delete mode 100644 src/content/album-covers/Jgrxxn, Lil Xav - Lost In Da Wind.jpeg delete mode 100644 src/content/album-covers/Miscél, Hanz - Clouds.jpeg delete mode 100644 src/content/album-covers/Motat - War Clips.jpeg delete mode 100644 src/content/album-covers/NEFFEX - Destiny.jpeg delete mode 100644 src/content/album-covers/SLIGHT - DREAMIN.jpeg delete mode 100644 src/content/album-covers/XXXTENTACION - vice city.jpeg delete mode 100644 src/content/album-covers/Xavier Wulf, Bones - Weather Man.jpeg delete mode 100644 src/content/album-covers/YFG Pave - Jinzo.jpeg delete mode 100644 src/content/album-covers/arya x - hide.jpeg delete mode 100644 src/content/album-covers/ilyTOMMY - My Girl.jpeg delete mode 100644 src/content/album-covers/makko - Ewig.jpeg create mode 100644 src/content/services.md create mode 100644 src/pages/services.astro diff --git a/src/components/Nav.astro b/src/components/Nav.astro index 52ad71a..27c2ce1 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -3,17 +3,17 @@ import Logo from "../content/TH.svg"; import Icon from "./Icon.astro"; import Button from "./Button.astro"; -const routes = ["blog", "tracks"]; +const routes = ["blog", "tracks", "services"]; ---