diff --git a/assets/images/SUBURBANSD.jpg b/assets/images/SUBURBANSD.jpg new file mode 100644 index 0000000..ce6bb28 Binary files /dev/null and b/assets/images/SUBURBANSD.jpg differ diff --git a/assets/images/SUBURBANSDSTICKER.png b/assets/images/SUBURBANSDSTICKER.png new file mode 100644 index 0000000..81680e9 Binary files /dev/null and b/assets/images/SUBURBANSDSTICKER.png differ diff --git a/assets/images/aleexheldt.jpg b/assets/images/aleexheldt.jpg new file mode 100644 index 0000000..4e9fdaa Binary files /dev/null and b/assets/images/aleexheldt.jpg differ diff --git a/assets/images/alexheldtlogo (1).png b/assets/images/alexheldtlogo (1).png new file mode 100644 index 0000000..0a9576e Binary files /dev/null and b/assets/images/alexheldtlogo (1).png differ diff --git a/assets/images/alexheldtlogo.jpg b/assets/images/alexheldtlogo.jpg new file mode 100644 index 0000000..253c3b1 Binary files /dev/null and b/assets/images/alexheldtlogo.jpg differ diff --git a/assets/images/blowfishrmx.jpg b/assets/images/blowfishrmx.jpg new file mode 100644 index 0000000..3709c76 Binary files /dev/null and b/assets/images/blowfishrmx.jpg differ diff --git a/assets/images/rumorsrmx_cover.JPG b/assets/images/rumorsrmx_cover.JPG new file mode 100644 index 0000000..92322ae Binary files /dev/null and b/assets/images/rumorsrmx_cover.JPG differ diff --git a/assets/images/serrated alex.jpg b/assets/images/serrated alex.jpg new file mode 100644 index 0000000..5e4d59c Binary files /dev/null and b/assets/images/serrated alex.jpg differ diff --git a/c.js b/c.js index 60c476f..946ee4a 100644 --- a/c.js +++ b/c.js @@ -11,44 +11,38 @@ const name = "ALEX HELDT"; const socials = [ { name: "twitch", - link: "https://twitter.com/abisoos", + link: "https://twitch.tv/alexheldtmusic", icon: icons["Twitch"], }, { name: "twitter", - link: "https://twitter.com/abisoos", + link: "https://twitter.com/alexheldtmusic", icon: icons["Twitter"], }, { name: "instagram", - link: "https://twitter.com/abisoos", + link: "https://instagr.am/alexheldtmusic", icon: icons["Instagram"], }, ]; const music = [ { - id: "rumorsremix", - shown: "Rumors Remix", - image: "/assets/images/serrated.jpg", - link: "https://soundcloud.com/abisoos/overdrive", + id: "rumorsrrmx", + name: "Rumors Remix", + image: "/assets/images/rumorsrmx_cover.JPG", + link: "https://ffm.to/dd3kjja", + }, + { + id: "blowfishrmx", + name: "Blowfish Boyfriend Remix", + image: "/assets/images/blowfishrmx.jpg", + link: "https://ffm.to/blowfishbfremix.owe", }, { id: "serrated", - shown: "Serrated", + name: "Serrated", image: "/assets/images/serrated.jpg", - link: "https://soundcloud.com/abisoos/overdrive", - }, - { - id: "overdrive3", - shown: "Serrated", - image: "/assets/images/serrated.jpg", - link: "https://soundcloud.com/abisoos/overdrive", - }, - { - id: "overdrive4", - shown: "Serrated", - image: "/assets/images/serrated.jpg", - link: "https://soundcloud.com/abisoos/overdrive", + link: "https://ffm.to/serrated", }, ]; diff --git a/index.js b/index.js index a13792d..2c13912 100644 --- a/index.js +++ b/index.js @@ -6,7 +6,7 @@ const cors = require("cors"); const morgan = require("morgan"); const chalk = require("chalk"); const hbs = require("express-handlebars"); -const { dev, music, port, socials, name } = require("./c"); +const { dev, allMusic, music, port, socials, name } = require("./c"); const redis = require("ioredis"); const { promisify } = require("util"); @@ -72,8 +72,8 @@ app.get("/", async (req, res) => { socials, music, creator: { - name: await r.get("creator_name") || 'lio', - website: await r.get("creator_website") || "https://himbo.cat", + name: (await r.get("creator_name")) || "lio", + website: (await r.get("creator_website")) || "https://himbo.cat", }, }); }); @@ -84,7 +84,7 @@ socials.forEach((social) => { }); // ! MUSIC LINKS -music.forEach((item) => { +allMusic.forEach((item) => { app.get(`/${item.id}`, (req, res) => res.redirect(item.link)); }); diff --git a/views/index.hbs b/views/index.hbs index e9ab59a..c7eaf95 100644 --- a/views/index.hbs +++ b/views/index.hbs @@ -18,9 +18,9 @@
{{#each music}}
- {{shown}} Cover Art + {{name}} Cover Art - {{shown}} + {{name}}
{{/each}}