diff --git a/SlashCommands/general/links.js b/SlashCommands/general/links.js new file mode 100644 index 0000000..8ca8948 --- /dev/null +++ b/SlashCommands/general/links.js @@ -0,0 +1,21 @@ +const { Client, CommandInteraction, MessageEmbed } = require("discord.js"); + +module.exports = { + name: "links", + description: "returns links of Hullcss", + type: 'CHAT_INPUT', + /** + * + * @param {Client} client + * @param {CommandInteraction} interaction + * @param {String[]} args + */ + run: async (client, interaction, args) => { + const embed = new MessageEmbed() + .setTitle("Links!") + .setColor('GREEN') + .setFooter(`Called By: ${interaction.user.tag}`) + .addField('Find us here:','https://hullcss.org/links') + interaction.followUp({ embeds: [embed]}); + }, +}; \ No newline at end of file