From a03cfc5ae0d50fc14456f66b41d9532a1d751438 Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Sun, 27 Apr 2025 10:45:04 +0200 Subject: [PATCH] Add tracks page --- src/components/Nav.astro | 4 +- src/{img => content}/TH.svg | 0 .../ARY, Liaze - Ticket nach Ketama.jpeg | Bin 0 -> 69270 bytes .../album-covers/BOCIGE, DYLAN - Desire.jpeg | Bin 0 -> 40231 bytes .../Beamon - lights in a hall.jpeg | Bin 0 -> 41891 bytes .../Black Smurf - And So It Was.jpeg | Bin 0 -> 26132 bytes .../CH4YN - Too Lost To Be Found.jpeg | Bin 0 -> 14105 bytes ...lvin Harris, Ellie Goulding - Miracle.jpeg | Bin 0 -> 44845 bytes ...Daniel Caesar, Mustafa - Toronto 2014.jpeg | Bin 0 -> 82494 bytes .../Dead Dawg, BHZ, Monk - Festnetz.jpeg | Bin 0 -> 56018 bytes .../GDS, Juice Wrld - Underworld.jpeg | Bin 0 -> 15541 bytes .../Guns N' Roses - Sweet Child O' Mine.jpeg | Bin 0 -> 48846 bytes .../Jgrxxn, Lil Xav - Lost In Da Wind.jpeg | Bin 0 -> 50357 bytes .../album-covers/Miscél, Hanz - Clouds.jpeg | Bin 0 -> 58339 bytes .../album-covers/Motat - War Clips.jpeg | Bin 0 -> 55682 bytes .../album-covers/NEFFEX - Destiny.jpeg | Bin 0 -> 69527 bytes .../album-covers/SLIGHT - DREAMIN.jpeg | Bin 0 -> 98189 bytes .../XXXTENTACION - vice city.jpeg | Bin 0 -> 51338 bytes .../Xavier Wulf, Bones - Weather Man.jpeg | Bin 0 -> 21592 bytes .../album-covers/YFG Pave - Jinzo.jpeg | Bin 0 -> 41631 bytes src/content/album-covers/arya x - hide.jpeg | Bin 0 -> 42753 bytes .../album-covers/ilyTOMMY - My Girl.jpeg | Bin 0 -> 71422 bytes src/content/album-covers/makko - Ewig.jpeg | Bin 0 -> 23009 bytes src/img/icons/bars-arrow-down.svg | 3 - src/img/icons/moon.svg | 3 - src/img/icons/sun.svg | 11 ---- src/pages/tracks.astro | 58 ++++++++++++++++++ 27 files changed, 60 insertions(+), 19 deletions(-) rename src/{img => content}/TH.svg (100%) create mode 100644 src/content/album-covers/ARY, Liaze - Ticket nach Ketama.jpeg create mode 100644 src/content/album-covers/BOCIGE, DYLAN - Desire.jpeg create mode 100644 src/content/album-covers/Beamon - lights in a hall.jpeg create mode 100644 src/content/album-covers/Black Smurf - And So It Was.jpeg create mode 100644 src/content/album-covers/CH4YN - Too Lost To Be Found.jpeg create mode 100644 src/content/album-covers/Calvin Harris, Ellie Goulding - Miracle.jpeg create mode 100644 src/content/album-covers/Daniel Caesar, Mustafa - Toronto 2014.jpeg create mode 100644 src/content/album-covers/Dead Dawg, BHZ, Monk - Festnetz.jpeg create mode 100644 src/content/album-covers/GDS, Juice Wrld - Underworld.jpeg create mode 100644 src/content/album-covers/Guns N' Roses - Sweet Child O' Mine.jpeg create mode 100644 src/content/album-covers/Jgrxxn, Lil Xav - Lost In Da Wind.jpeg create mode 100644 src/content/album-covers/Miscél, Hanz - Clouds.jpeg create mode 100644 src/content/album-covers/Motat - War Clips.jpeg create mode 100644 src/content/album-covers/NEFFEX - Destiny.jpeg create mode 100644 src/content/album-covers/SLIGHT - DREAMIN.jpeg create mode 100644 src/content/album-covers/XXXTENTACION - vice city.jpeg create mode 100644 src/content/album-covers/Xavier Wulf, Bones - Weather Man.jpeg create mode 100644 src/content/album-covers/YFG Pave - Jinzo.jpeg create mode 100644 src/content/album-covers/arya x - hide.jpeg create mode 100644 src/content/album-covers/ilyTOMMY - My Girl.jpeg create mode 100644 src/content/album-covers/makko - Ewig.jpeg delete mode 100644 src/img/icons/bars-arrow-down.svg delete mode 100644 src/img/icons/moon.svg delete mode 100644 src/img/icons/sun.svg create mode 100644 src/pages/tracks.astro diff --git a/src/components/Nav.astro b/src/components/Nav.astro index 4a0e5d0..e284432 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -1,7 +1,7 @@ --- -import Logo from "../img/TH.svg"; +import Logo from "../content/TH.svg"; -const routes = ["blog"]; +const routes = ["blog", "tracks"]; ---