Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"axios": "^1.16.0",
"chalk": "^4.1.2",
"discord.js": "^14.27.0",
"dotenv": "^17.4.2",
"pg": "^8.20.0",
"tsx": "^4.21.0",
"zod": "^4.4.3"
Expand Down
6 changes: 6 additions & 0 deletions src/commands/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@ export default new Command({
.setLabel("Our Repository")
.setURL("https://boostify.breaddevv.cc/github");

const buyMeACoffee = new ButtonBuilder()
.setStyle(ButtonStyle.Link)
.setLabel("Buy Me A Coffee!")
.setURL("https://buymeacoffee.com/breaddevv");

const topgg = new ButtonBuilder()
.setStyle(ButtonStyle.Link)
.setLabel("Support Us On Top.gg")
Expand All @@ -134,6 +139,7 @@ export default new Command({
repo
);
const actionRow2 = new ActionRowBuilder<ButtonBuilder>().setComponents(
buyMeACoffee,
topgg
);

Expand Down
3 changes: 2 additions & 1 deletion src/events/onServerAdd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export default {
const privacy = new ButtonBuilder().setLabel('Privacy Policy').setURL('https://boostify.breaddevv.cc/privacy').setStyle(ButtonStyle.Link);
const github = new ButtonBuilder().setLabel('Our Repository').setURL('https://boostify.breaddevv.cc/github').setStyle(ButtonStyle.Link);
const topgg = new ButtonBuilder().setLabel('Support Us On Top.gg!').setURL('https://top.gg/bot/1453802179789066442').setStyle(ButtonStyle.Link);
const buyMeACoffee = new ButtonBuilder().setLabel("Buy Me A Coffee!").setURL("https://buymeacoffee.com/breaddevv").setStyle(ButtonStyle.Link);

const container = new ContainerBuilder().addSectionComponents(comp =>
comp
Expand All @@ -28,7 +29,7 @@ export default {
.setThumbnailAccessory(accessory => accessory.setURL(avatarUrl))
)
.addTextDisplayComponents(text => text.setContent(`-# You're receiving this text because you/other member added me to the server **${guild.name}** — In which you're the owner!`))
.addActionRowComponents(row => row.addComponents(termsBtn, privacy, github, topgg))
.addActionRowComponents(row => row.addComponents(termsBtn, privacy, github, topgg, buyMeACoffee))
.setAccentColor(SystemColors.main);

await owner.send({
Expand Down
Loading