63 lines
1.3 KiB
JavaScript
63 lines
1.3 KiB
JavaScript
const icons = require("simple-icons");
|
|
var argv = require("minimist")(process.argv.slice(2));
|
|
|
|
// Since I can't refer back to things, I'm just gonna make them consts
|
|
// and export them
|
|
|
|
const dev = false || argv.dev;
|
|
|
|
const port = 9696;
|
|
const name = "ALEX HELDT";
|
|
const socials = [
|
|
{
|
|
name: "twitch",
|
|
link: "https://twitter.com/abisoos",
|
|
icon: icons["Twitch"],
|
|
},
|
|
{
|
|
name: "twitter",
|
|
link: "https://twitter.com/abisoos",
|
|
icon: icons["Twitter"],
|
|
},
|
|
{
|
|
name: "instagram",
|
|
link: "https://twitter.com/abisoos",
|
|
icon: icons["Instagram"],
|
|
},
|
|
];
|
|
const music = [
|
|
{
|
|
id: "rumorsremix",
|
|
shown: "Rumors Remix",
|
|
image: "/assets/images/serrated.jpg",
|
|
link: "https://soundcloud.com/abisoos/overdrive",
|
|
},
|
|
{
|
|
id: "serrated",
|
|
shown: "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",
|
|
},
|
|
];
|
|
|
|
const allMusic = [...music];
|
|
module.exports = {
|
|
dev,
|
|
port,
|
|
name,
|
|
socials,
|
|
music,
|
|
allMusic,
|
|
};
|