-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
390 lines (345 loc) · 15.9 KB
/
index.html
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Assistant - A Multifunctional Discord Bot</title>
<meta property="og:title" content="Assistant Discord Bot">
<meta name="twitter:title" content="Assistant Discord Bot">
<meta name="description" content="A powerful Multifunctional Discord Bot">
<meta property="og:description" content="A powerful Multifunctional Discord Bot">
<meta name="twitter:description" content="A powerful Multifunctional Discord Bot">
<meta property="og:image"
content="https://cdn.discordapp.com/avatars/821445736322695179/8b62eb7c1a4feeced2c0a24ce78cc671.png">
<meta name="twitter:image"
content="https://cdn.discordapp.com/avatars/821445736322695179/8b62eb7c1a4feeced2c0a24ce78cc671.png">
<link rel="icon" type="image/x-icon"
href="https://cdn.discordapp.com/avatars/821445736322695179/8b62eb7c1a4feeced2c0a24ce78cc671.png">
<link rel="stylesheet" href="assets/css/bulma.min.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<link rel="stylesheet" href="https://unpkg.com/tippy.js@6/animations/scale.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="assets/js/jquery-3.6.0.js"></script>
<script>
function webhook() {
var request = new XMLHttpRequest();
request.open("POST", "https://discord.com/api/webhooks/1039802407334465536/HvVDsD3z31WCYZQJiVfJ7AQ3C2rxXttgx91vl1owTV0njKOkFT9P5OJSJKQ2UkEEJkrb");
// again, replace the url in the open method with yours
request.setRequestHeader('Content-type', 'application/json');
var myEmbed = {
author: {
name: "Assistant Web",
},
title: "New Visit",
description: "A new Visitor just visited our website!",
color: hexToDecimal("#e74d3c"),
fields: [
{
name: "Page Visited",
value: `Main Page ([index.html](${window.location.origin}))`,
inline: false
}
]
}
var params = {
username: "Assistant",
avatar_url: "https://cdn.discordapp.com/avatars/821445736322695179/8b62eb7c1a4feeced2c0a24ce78cc671.webp?size=1024",
embeds: [myEmbed]
}
request.send(JSON.stringify(params));
// function that converts a color HEX to a valid Discord color
function hexToDecimal(hex) {
return parseInt(hex.replace("#", ""), 16)
}
}
</script>
</head>
<body onload="webhook()">
<a id="backtotop" data-tippy-content="Back To Top.">
<i class="fa-solid fa-angle-up has-text-white fa-2xl mt-5"></i>
</a>
<!-- Navbar Start -->
<nav class="navbar is-fixed-top" role="navigation" aria-label="main navigation">
<div class="navbar-brand mt-2 mb-2">
<a class="navbar-item" href="./">
<strong>Assistant</strong>
<!-- or if you want to use image -->
<!-- <img
src="image link or path"
width="112"
height="28"
/> -->
</a>
<a role="button" class="navbar-burger has-text-white" data-target="navMenu" aria-label="menu"
aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarExampleTransparentExample" class="navbar-menu">
<div class="navbar-start">
<a href="#" class="navbar-item is-tab">
Home
</a>
<a href="#features" class="navbar-item is-tab">
Features
</a>
<a href="#stats" class="navbar-item is-tab">
Stats
</a>
<a href="#invite" class="navbar-item is-tab">
Invite
</a>
<a href="./privacy-policy.html" class="navbar-item is-tab">
Privacy Policy
</a>
<a href="./terms-of-services.html" class="navbar-item is-tab">
Terms and Services
</a>
<hr class="navbar-divider">
</div>
<div class="navbar-end">
<a href="./team.html" class="navbar-item is-tab">
Team
</a>
<a href="https://discord.com/invite/UYKsjp5AeK" class="navbar-item is-tab" target="_blank">
Support Server
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Hero Section Start -->
<section class="hero bg-base is-fullheight">
<div class="hero-body">
<div class="">
<div class="columns">
<div class="column mr-6 mt-12" data-aos="fade-up">
<p class="title has-text-white has-text-weight-bold">
Welcome to Assistant's <span class="blurple">Website</span>
</p>
<p class="subtitle has-text-grey-light is-size-6 mt-3">
Hey there, I'm Assistant, A Cool and Multifunctional Bot with Awesome Features to enhance your Discord Community
with more easier way 💖 </a>
</p>
<div class="buttons">
<a href="https://discord.com/api/oauth2/authorize?client_id=821445736322695179&permissions=8&redirect_uri=https%3A%2F%2Fassistant-8683.vercel.app%2Fthanks.html&response_type=code&scope=identify%20bot"
class="button is-info">
<strong>Add To Discord</strong>
</a>
<a href="https://discord.com/invite/UYKsjp5AeK" class="button is-primary is-outlined">
<strong>Support</strong>
</a>
</div>
</div>
<div class="column mt-6" data-aos="fade-left">
<img class="image has-image-centered vert-move mt-4"
src="https://cdn.discordapp.com/avatars/821445736322695179/8b62eb7c1a4feeced2c0a24ce78cc671.png?size=1024"
alt="hero image" style="width: 20rem;" />
</div>
</div>
</div>
</div>
<div class="has-text-centered" data-tippy-content="Scroll Down">
<a href="#features"><i class="fa-solid fa-circle-chevron-down fa-lg vert-move2 has-text-white"></i></a>
</div>
</section>
<!-- Hero Section End -->
<!-- Hero Waves Start -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#1a2634" fill-opacity="1"
d="M0,288L24,261.3C48,235,96,181,144,154.7C192,128,240,128,288,149.3C336,171,384,213,432,202.7C480,192,528,128,576,133.3C624,139,672,213,720,213.3C768,213,816,139,864,101.3C912,64,960,64,1008,106.7C1056,149,1104,235,1152,240C1200,245,1248,171,1296,144C1344,117,1392,139,1416,149.3L1440,160L1440,0L1416,0C1392,0,1344,0,1296,0C1248,0,1200,0,1152,0C1104,0,1056,0,1008,0C960,0,912,0,864,0C816,0,768,0,720,0C672,0,624,0,576,0C528,0,480,0,432,0C384,0,336,0,288,0C240,0,192,0,144,0C96,0,48,0,24,0L0,0Z">
</path>
</svg>
<!-- Hero Waves End -->
<!-- Features Section Start -->
<section id="features" class="section mt-6">
<div class="has-text-centered">
<h1 class="title lined">Features</h1>
<div class="line line-center blurple"></div>
</div>
<!-- single feature start (Left) -->
<div class="single-feature">
<div class="shape-right" data-aos="fade-up-left">
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<path fill="#9AAAE3"
d="M42.7,-62.9C50.9,-52.8,50.1,-34.4,51.7,-19.2C53.4,-4,57.4,8,56.6,20.8C55.8,33.7,50.1,47.4,39.9,53.8C29.6,60.1,14.8,59.1,0.4,58.5C-14,58,-28,57.9,-38,51.5C-48.1,45,-54.3,32.3,-61.3,18.1C-68.4,4,-76.4,-11.7,-71.9,-22.7C-67.4,-33.6,-50.4,-39.8,-36.3,-47.9C-22.2,-56.1,-11.1,-66.3,3.1,-70.5C17.2,-74.7,34.5,-72.9,42.7,-62.9Z"
transform="translate(100 100)" />
</svg>
</div>
<div class="columns mt-6">
<div class="column mr-6">
<h4 class="title">General<span class="blurple">#1</span></h4>
<p class="subtitle mt-3">
The bot supports tons of general features like <code>advice</code>, <code>jokes</code>,
<code>calender</code>, <code>covid-info</code>, <code>binary(Encode, Decode)</code>, <code>qrcode</code>
etc.
</p>
</div>
<div class="column" data-aos="fade-left">
<img class="image has-image-centered" src="assets/img/features_overview.svg" alt="feature1 img"
style="width: 20rem;" />
</div>
</div>
</div>
<!-- single feature end (Left) -->
<!-- single feature start (Right) -->
<div class="single-feature">
<div class="shape-left" data-aos="fade-up-right">
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<path fill="#9AAAE3"
d="M54.2,-67.2C69.4,-63.5,80.4,-46.6,84.6,-28.7C88.7,-10.8,86,8.1,76.8,21.4C67.6,34.7,51.9,42.3,38.1,50.3C24.2,58.3,12.1,66.7,-2.8,70.5C-17.7,74.3,-35.3,73.6,-45.6,64.5C-55.9,55.3,-58.8,37.7,-63.3,21.2C-67.7,4.7,-73.7,-10.6,-71.8,-25.4C-69.8,-40.2,-59.9,-54.5,-46.6,-58.9C-33.3,-63.2,-16.7,-57.6,1.4,-59.6C19.5,-61.5,39,-71,54.2,-67.2Z"
transform="translate(100 100)" />
</svg>
</div>
<div class="columns mt-6">
<div class="column" data-aos="fade-right">
<img class="image has-image-centered" src="assets/img/product_literation.svg" alt="feature1 img"
style="width: 20rem;" />
</div>
<div class="column">
<h4 class="title">
Utility<span class="has-text-primary">#2</span>
</h4>
<p class="subtitle mt-3">
The bot contains utility commands like <code>membercount</code>, <code>userinfo</code>, <code>role</code>,
<code>announce</code> etc which might help you to manage your server!
</p>
</div>
</div>
</div>
<!-- single feature end (Right) -->
<!-- single feature start (Left) -->
<div class="single-feature">
<div class="shape-right" data-aos="fade-up-left">
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<path fill="#9AAAE3"
d="M42.7,-62.9C50.9,-52.8,50.1,-34.4,51.7,-19.2C53.4,-4,57.4,8,56.6,20.8C55.8,33.7,50.1,47.4,39.9,53.8C29.6,60.1,14.8,59.1,0.4,58.5C-14,58,-28,57.9,-38,51.5C-48.1,45,-54.3,32.3,-61.3,18.1C-68.4,4,-76.4,-11.7,-71.9,-22.7C-67.4,-33.6,-50.4,-39.8,-36.3,-47.9C-22.2,-56.1,-11.1,-66.3,3.1,-70.5C17.2,-74.7,34.5,-72.9,42.7,-62.9Z"
transform="translate(100 100)" />
</svg>
</div>
<div class="columns mt-6">
<div class="column mr-6">
<h4 class="title">
Moderation<span class="has-text-warning">#3</span>
</h4>
<p class="subtitle mt-3">
The bot contains active moderation features which makes the bot powerful though it doesn't have automod it
supports features like advanced <code>kick</code>, <code>ban</code>, <code>timeout</code>, <code>mute</code>
etc.
</p>
</div>
<div class="column" data-aos="fade-left">
<img class="image has-image-centered" src="assets/img/feeling_happy.svg" alt="feature1 img"
style="width: 20rem;" />
</div>
</div>
</div>
<!-- single feature end (Left) -->
<!-- single feature start (Right) -->
<div class="single-feature">
<div class="shape-left" data-aos="fade-up-right">
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<path fill="#9AAAE3"
d="M54.2,-67.2C69.4,-63.5,80.4,-46.6,84.6,-28.7C88.7,-10.8,86,8.1,76.8,21.4C67.6,34.7,51.9,42.3,38.1,50.3C24.2,58.3,12.1,66.7,-2.8,70.5C-17.7,74.3,-35.3,73.6,-45.6,64.5C-55.9,55.3,-58.8,37.7,-63.3,21.2C-67.7,4.7,-73.7,-10.6,-71.8,-25.4C-69.8,-40.2,-59.9,-54.5,-46.6,-58.9C-33.3,-63.2,-16.7,-57.6,1.4,-59.6C19.5,-61.5,39,-71,54.2,-67.2Z"
transform="translate(100 100)" />
</svg>
</div>
<div class="columns mt-6">
<div class="column" data-aos="fade-right">
<img class="image has-image-centered" src="assets/img/music.svg" alt="feature1 img" style="width: 20rem;" />
</div>
<div class="column">
<h4 class="title">Fun<span class="has-text-info">#4</span></h4>
<p class="subtitle mt-3">
The bot has amazing <strong>Fun</strong> Features for example - <code>wasted</code>, <code>rip</code>,
<code>area</code>, <code>ascii</code>, <code>morse</code> etc
</p>
</div>
</div>
</div>
<!-- single feature end (Right) -->
</section>
<!-- Features Section End -->
<!-- Stats Section Start -->
<div id="statsx">
<section id="stats" class="section mt-6">
<div class="has-text-centered">
<h1 class="title lined">Stats</h1>
<div class="line line-center blurple"></div>
</div>
<div class="columns mt-6">
<div class="column has-text-centered">
<p class="boxOne title has-text-weight-bold lined">0</p>
<span class="subtitle has-text-weight-bold blurple"><i class="fa-solid fa-server"></i> Servers</span>
</div>
<div class="column has-text-centered">
<p class="boxTwo title has-text-weight-bold lined">0</p>
<span class="subtitle has-text-weight-bold blurple"><i class="fa-solid fa-terminal"></i> Commands</span>
</div>
<div class="column has-text-centered">
<p class="boxThree title has-text-weight-bold lined">0</p>
<span class="subtitle has-text-weight-bold blurple"><i class="fa-solid fa-users"></i> Users</span>
</div>
</div>
</section>
</div>
<!-- Stats Section End -->
<!-- Invite Section Start -->
<section id="invite" class="section mt-6">
<div class="columns">
<div class="column has-text-left">
<p class="title has-text-weight-bold">
Add <span class="blurple">Assistant</span> Now!
</p>
<p class="subtitle mt-3 has-text-gray">
Assistant's Amazing feature is helping people much and I hope it'll help you also we'd like to help you! Why
you are waiting for? Add Assistant Now!<br>
<small>
<p class="is-uppercase">By Pressing the Button you are agreeing our
<a href="./privacy-policy.html" class="blurple has-text-weight-bold">Privacy Policy</a> & <a
href="./terms-of-services.html" class="blurple has-text-weight-bold">Terms of Services</a>
</small>
</p>
<a href="https://discord.com/api/oauth2/authorize?client_id=821445736322695179&permissions=8&redirect_uri=https%3A%2F%2Fassistant-8683.vercel.app%2Fthanks.html&response_type=code&scope=identify%20bot"
class="button is-blurple is-medium"><strong><i class="fa-brands fa-discord"></i>
Invite Assistant</strong></a>
</div>
</section>
<!-- Invite Section End -->
<!-- Footer Section Start -->
<footer class="footer bg-base">
<div class="content has-text-centered has-text-white">
<p>Thanks for being part of our Journey!</p>
<div class="mb-2">
<a href="https://discord.com/invite/UYKsjp5AeK" class="has-text-white" target="_blank">
<i class="fa-brands fa-discord"></i> Assistant Support Server
</a>
</div>
<p style="letter-spacing: 0.1em;" class="is-uppercase">Our
<a href="./privacy-policy.html" class="blurple has-text-weight-bold">Privacy Policy</a> & <a
href="./terms-of-services.html" class="blurple has-text-weight-bold">Terms of Services</a>
</p>
<p>
© 2021 - <span id="cp-year"></span> Copyright Assistant Development.<br>All Rights
Reserved.
</p>
</div>
</footer>
</div>
</footer>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://unpkg.com/tippy.js@6"></script>
<script src="assets/js/script.js"></script>
<script type="module" src="assets/js/webhook.js"></script>
</body>
</html>