We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c0fbd8 commit acabe26Copy full SHA for acabe26
app/api/project-requests/route.tsx
@@ -20,7 +20,7 @@ export async function POST(request: Request) {
20
const discordMessage = {
21
embeds: [{
22
title: '🆕 New Project Request',
23
- color: 0x6366f1,
+ color: 0x8D15CD,
24
fields: [
25
{
26
name: '📝 Project Title',
@@ -40,6 +40,10 @@ export async function POST(request: Request) {
40
},
41
],
42
timestamp: new Date().toISOString(),
43
+ footer: {
44
+ text: "Codegems",
45
+ icon_url: "https://www.codegems.xyz/icon.png" // Replace with your actual icon URL
46
+ }
47
}],
48
};
49
0 commit comments