-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
324 lines (307 loc) · 19 KB
/
index.html
File metadata and controls
324 lines (307 loc) · 19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contrast Bot - A Versatile Discord Bot</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Contrast is a versatile Discord bot with moderation tools, fun commands, and social features built with TypeScript, SQLite and Discord.js">
<meta name="keywords" content="discord bot, contrast bot, moderation, typescript, discord.js, sqlite">
<meta name="author" content="Contrast Bot Team">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://contrast-bot.github.io/">
<meta property="og:title" content="Contrast Bot - A Versatile Discord Bot">
<meta property="og:description" content="Enhance your Discord server with moderation tools, fun commands, and social features.">
<meta property="og:image" content="https://contrast-bot.github.io/banner.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://contrast-bot.github.io/">
<meta property="twitter:title" content="Contrast Bot - A Versatile Discord Bot">
<meta property="twitter:description" content="Enhance your Discord server with moderation tools, fun commands, and social features.">
<meta property="twitter:image" content="https://contrast-bot.github.io/banner.png">
<!-- Favicon -->
<link rel="icon" href="logo.png" type="image/png">
<link rel="apple-touch-icon" href="logo.png">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/76661d0faf.js" crossorigin="anonymous"></script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Geist+Mono:wght@300;400;500;600;700&family=Geist+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Custom Styles -->
<link rel="stylesheet" href="styles.css">
<!-- Tailwind Config -->
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
'geist-sans': ['"Geist Sans"', 'sans-serif'],
'geist-mono': ['"Geist Mono"', 'monospace'],
},
colors: {
'discord-blurple': '#5865F2',
}
}
}
}
</script>
</head>
<body class="bg-black text-white font-geist-sans antialiased">
<!-- Header -->
<header class="fixed top-0 left-0 right-0 z-50 bg-black/80 backdrop-blur-md border-b border-white/10">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<img src="logo.png" alt="Contrast Bot Logo" class="w-8 h-8 rounded-full">
<span class="font-bold text-xl">Contrast</span>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#features" class="hover:text-gray-300 transition-colors">Features</a>
<a href="#commands" class="hover:text-gray-300 transition-colors">Commands</a>
<a href="#stats" class="hover:text-gray-300 transition-colors">Stats</a>
</nav>
<div class="flex items-center space-x-4">
<a href="https://github.com/contrast-bot/contrast-bot" target="_blank" class="hover:text-gray-300 transition-colors">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#invite" class="bg-discord-blurple/35 hover:bg-discord-blurple/50 text-white px-2 py-1 rounded-md transition-colors">
Invite Bot
</a>
</div>
<button id="mobile-menu-button" class="md:hidden text-white">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-black/95 border-b border-white/10">
<div class="container mx-auto px-4 py-4 flex flex-col space-y-4">
<a href="#features" class="hover:text-gray-300 transition-colors">Features</a>
<a href="#commands" class="hover:text-gray-300 transition-colors">Commands</a>
<a href="#stats" class="hover:text-gray-300 transition-colors">Stats</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="pt-32 pb-20 px-4 relative">
<div class="container mx-auto text-center relative z-10">
<img src="logo.png" alt="Contrast Bot Logo" class="w-24 h-24 mx-auto mb-6 mt-16 rounded-full shadow-lg border-2 border-white/20">
<h1 class="text-4xl md:text-6xl font-bold mb-6 bg-gradient-to-r from-white to-gray-400 text-transparent bg-clip-text">
Meet Contrast
</h1>
<p class="text-xl md:text-2xl text-gray-400 max-w-3xl mx-auto mb-10">
A versatile Discord bot built with TypeScript, SQLite and Discord.js
</p>
<div class="flex flex-col md:flex-row justify-center gap-4 mb-16">
<a href="#invite" class="bg-white text-black hover:bg-gray-200 font-medium px-6 py-3 rounded-md transition-colors">
<i class="fas fa-plus mr-2"></i> Add to Discord
</a>
<a href="https://github.com/contrast-bot/contrast-bot" target="_blank" class="bg-transparent border border-white/30 hover:bg-white/10 font-medium px-6 py-3 rounded-md transition-colors">
<i class="fab fa-github mr-2"></i> View on GitHub
</a>
</div>
<div class="relative mx-auto max-w-5xl">
<div class="absolute inset-0 bg-gradient-to-r from-purple-500/20 to-blue-500/20 blur-3xl rounded-3xl"></div>
<div class="relative bg-black/40 backdrop-blur-sm border border-white/10 p-4 rounded-xl overflow-hidden">
<pre class="font-geist-mono text-left text-sm md:text-base overflow-x-auto text-gray-300 p-2">
const contrast = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMembers
]
});
await contrast.login(config.token);
// Contrast Bot is now online!</pre>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 px-4 bg-gradient-to-b from-black to-gray-900">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center">Features</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-6 rounded-xl hover:border-white/30 transition-all">
<div class="w-12 h-12 bg-green-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-gamepad text-green-400 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Fun Commands</h3>
<p class="text-gray-400">Entertaining commands like Rock Paper Scissors, jokes, quotes, slots, russian roulette and more.</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-6 rounded-xl hover:border-white/30 transition-all">
<div class="w-12 h-12 bg-blue-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="fa-solid fa-building-columns text-blue-400 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Economy</h3>
<p class="text-gray-400">Personal balance, daily rewards, coins transfer, <span class="underline">GAMBLING</span> and more!</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-6 rounded-xl hover:border-white/30 transition-all">
<div class="w-12 h-12 bg-yellow-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-users text-yellow-400 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Social Features</h3>
<p class="text-gray-400">Reputation system, quotes, and other social interaction features.</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-6 rounded-xl hover:border-white/30 transition-all">
<div class="w-12 h-12 bg-purple-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="fa-solid fa-arrow-trend-up text-purple-400 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Leveling System</h3>
<p class="text-gray-400">Powerful global leveling system with XP and leaderboards.</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-6 rounded-xl hover:border-white/30 transition-all">
<div class="w-12 h-12 bg-red-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-database text-red-400 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">SQLite Database</h3>
<p class="text-gray-400">Persistent storage for user data, quotes, reputation, and more.</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-6 rounded-xl hover:border-white/30 transition-all">
<div class="w-12 h-12 bg-indigo-500/20 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-code text-indigo-400 text-xl"></i>
</div>
<h3 class="text-xl font-semibold mb-2">TypeScript</h3>
<p class="text-gray-400">Built with TypeScript for type safety and better code organization.</p>
</div>
</div>
</div>
</section>
<!-- Commands Section -->
<section id="commands" class="py-20 px-4 bg-gray-900">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center">Popular Commands</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 max-w-4xl mx-auto">
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-4 rounded-xl hover:border-white/30 transition-all">
<div class="font-geist-mono mb-2 flex items-center">
<span class="text-discord-blurple">/</span>
<span class="font-semibold">ping</span>
</div>
<p class="text-gray-400 text-sm">Check the bot's latency and API response time</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-4 rounded-xl hover:border-white/30 transition-all">
<div class="font-geist-mono mb-2 flex items-center">
<span class="text-discord-blurple">/</span>
<span class="font-semibold">help</span>
</div>
<p class="text-gray-400 text-sm">Display all available commands and their usage</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-4 rounded-xl hover:border-white/30 transition-all">
<div class="font-geist-mono mb-2 flex items-center">
<span class="text-discord-blurple">/</span>
<span class="font-semibold">balance</span>
<span class="text-gray-500 ml-2">[check/transfer/leaderboard]</span>
</div>
<p class="text-gray-400 text-sm">Manage your economy balance and view leaderboards</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-4 rounded-xl hover:border-white/30 transition-all">
<div class="font-geist-mono mb-2 flex items-center">
<span class="text-discord-blurple">/</span>
<span class="font-semibold">daily</span>
<span class="text-gray-500 ml-2">[claim/status]</span>
</div>
<p class="text-gray-400 text-sm">Claim your daily coins and manage streaks</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-4 rounded-xl hover:border-white/30 transition-all">
<div class="font-geist-mono mb-2 flex items-center">
<span class="text-discord-blurple">/</span>
<span class="font-semibold">slots</span>
<span class="text-gray-500 ml-2">[bet] [spins]</span>
</div>
<p class="text-gray-400 text-sm">Spin the slot machine and win big!</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-4 rounded-xl hover:border-white/30 transition-all">
<div class="font-geist-mono mb-2 flex items-center">
<span class="text-discord-blurple">/</span>
<span class="font-semibold">russian-roulette</span>
<span class="text-gray-500 ml-2">[bullets]</span>
</div>
<p class="text-gray-400 text-sm">Play Russian Roulette! ALL-IN only - High risk, high reward!</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-4 rounded-xl hover:border-white/30 transition-all">
<div class="font-geist-mono mb-2 flex items-center">
<span class="text-discord-blurple">/</span>
<span class="font-semibold">level</span>
<span class="text-gray-500 ml-2">[user]</span>
</div>
<p class="text-gray-400 text-sm">Check your level, XP, and progression stats</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-4 rounded-xl hover:border-white/30 transition-all">
<div class="font-geist-mono mb-2 flex items-center">
<span class="text-discord-blurple">/</span>
<span class="font-semibold">rep</span>
<span class="text-gray-500 ml-2">[give/check]</span>
</div>
<p class="text-gray-400 text-sm">Give reputation to users or check reputation stats</p>
</div>
</div>
<div class="text-center mt-10">
<a href="https://github.com/contrast-bot/contrast-bot/tree/main/src/commands" target="_blank" class="text-discord-blurple hover:underline">
View all commands <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
</section>
<!-- Stats Section -->
<section id="stats" class="py-20 px-4 bg-gradient-to-b from-gray-900 to-black">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center">Bot Stats</h2>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 max-w-4xl mx-auto">
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-6 rounded-xl text-center hover:border-white/30 transition-all">
<div class="text-4xl font-bold mb-2 text-white counter" data-target="5">0</div>
<p class="text-gray-400">Servers</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-6 rounded-xl text-center hover:border-white/30 transition-all">
<div class="text-4xl font-bold mb-2 text-white counter" data-target="300">0</div>
<p class="text-gray-400">Users</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-6 rounded-xl text-center hover:border-white/30 transition-all">
<div class="text-4xl font-bold mb-2 text-white counter" data-target="30">0</div>
<p class="text-gray-400">Commands</p>
</div>
<div class="bg-black/40 backdrop-blur-sm border border-white/10 p-6 rounded-xl text-center hover:border-white/30 transition-all">
<div class="text-4xl font-bold mb-2 text-white counter" data-target="0">0</div>
<p class="text-gray-400">Uptime %</p>
</div>
</div>
</div>
</section>
<!-- Invite Section -->
<section id="invite" class="py-20 px-4 bg-black relative">
<div class="container mx-auto text-center max-w-3xl relative z-10">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to add Contrast to your server?</h2>
<p class="text-gray-400 mb-10">Invite Contrast to your Discord server and experience all the features it has to offer.</p>
<a href="https://discord.com/oauth2/authorize?client_id=1339224975814688900" target="_blank" class="bg-discord-blurple hover:bg-discord-blurple/90 text-white font-medium px-8 py-4 rounded-md transition-colors inline-flex items-center">
<i class="fab fa-discord mr-2 text-xl"></i> Add to Discord
</a>
</div>
</section>
<!-- Footer -->
<footer class="py-10 px-4 bg-black border-t border-white/10">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-4 md:mb-0">
<img src="logo.png" alt="Contrast Bot Logo" class="w-6 h-6 rounded-full">
<span class="font-bold">Contrast Bot</span>
</div>
<div class="flex space-x-4">
<a href="https://github.com/contrast-bot/contrast-bot" target="_blank" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-github text-xl"></i>
</a>
<a href="https://discord.gg/X6MG9MXFcF" target="_blank" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-discord text-xl"></i>
</a>
</div>
</div>
<div class="mt-8 text-center text-gray-500 text-sm">
<p>© 2025 Contrast Bot. Not affiliated with Discord, Inc.</p>
</div>
</div>
</footer>
<!-- Custom JavaScript -->
<script src="script.js"></script>
</body>
</html>