-
Notifications
You must be signed in to change notification settings - Fork 66
/
index.html
361 lines (330 loc) · 12.4 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
<!--
| Website designed by JstnLT (https://jstnlt.my.id)
| This project is open source: https://github.com/JastinXyz/discord-bot-landing-page-web
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Your Bot - a Discord Bot</title>
<link rel="stylesheet" href="assets/css/bulma.min.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/aos.css" />
<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>
</head>
<body>
<!-- Back To Top Start -->
<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>
<!-- Back To Top End -->
<!-- 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>Your Bot</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="navbarBasicExample" 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="#" class="navbar-item is-tab">
Docs
</a>
</div>
<div class="navbar-end">
<a href="#" class="navbar-item is-tab" target="_blank">
<i class="fa-brands fa-discord"></i>
</a>
<a href="#" class="navbar-item is-tab" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
<div class="navbar-item">
<div class="buttons">
<a href="#" class="button is-blurple">
<strong
><i class="fa-solid fa-right-to-bracket mr-2"></i>
Login</strong
>
</a>
</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">
Time to add [your bot] to your server.
</p>
<p class="subtitle has-text-grey-light is-size-6 mt-3">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
<div class="buttons">
<a href="#" class="button is-info">
<strong>Add To Discord</strong>
</a>
<a href="#" class="button is-primary is-outlined">
<strong><i class="fa-solid fa-crown"></i> Premium</strong>
</a>
</div>
</div>
<div class="column mt-6" data-aos="fade-left">
<img
class="image has-image-centered vert-move mt-4"
src="assets/img/relaunch_day.svg"
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="columns mt-6">
<div class="column mr-6">
<h4 class="title">Feature <span class="blurple">#1</span></h4>
<p class="subtitle mt-3">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat.
</p>
</div>
<div class="column" data-aos="fade-left">
<img
class="image has-image-centered"
src="assets/img/features1.svg"
alt="feature1 img"
style="width: 23rem;"
/>
</div>
</div>
</div>
<!-- single feature end (Left) -->
<!-- single feature start (Right) -->
<div class="single-feature">
<div class="columns mt-6">
<div class="column" data-aos="fade-right">
<img
class="image has-image-centered"
src="assets/img/features2.svg"
alt="feature1 img"
style="width: 23rem;"
/>
</div>
<div class="column">
<h4 class="title">
Feature <span class="has-text-primary">#2</span>
</h4>
<p class="subtitle mt-3">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat.
</p>
</div>
</div>
</div>
<!-- single feature end (Right) -->
<!-- single feature start (Left) -->
<div class="single-feature">
<div class="columns mt-6">
<div class="column mr-6">
<h4 class="title">
Feature <span class="has-text-warning">#3</span>
</h4>
<p class="subtitle mt-3">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat.
</p>
</div>
<div class="column" data-aos="fade-left">
<img
class="image has-image-centered"
src="assets/img/features3.svg"
alt="feature1 img"
style="width: 23rem;"
/>
</div>
</div>
</div>
<!-- single feature end (Left) -->
<!-- single feature start (Right) -->
<div class="single-feature">
<div class="columns mt-6">
<div class="column" data-aos="fade-right">
<img
class="image has-image-centered"
src="assets/img/features4.svg"
alt="feature1 img"
style="width: 23rem;"
/>
</div>
<div class="column">
<h4 class="title">Feature <span class="has-text-info">#4</span></h4>
<p class="subtitle mt-3">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat.
</p>
</div>
</div>
</div>
<!-- single feature end (Right) -->
</section>
<!-- Features Section End -->
<!-- Stats Section Start -->
<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="title has-text-weight-bold lined">000</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="title has-text-weight-bold lined">000</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="title has-text-weight-bold lined">000</p>
<span class="subtitle has-text-weight-bold blurple"><i class="fa-solid fa-users"></i> Users</span>
</div>
</div>
</section>
<!-- Stats Section End -->
<!-- Invite Section Start -->
<section class="section mt-6">
<div class="columns">
<div class="column has-text-left">
<p class="title has-text-weight-bold">
Ready to try <span class="blurple">[your bot]</span>?
</p>
<p class="subtitle mt-3 has-text-gray">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
<a href="#" class="button is-blurple is-medium"
><strong><i class="fa-solid fa-book"></i> Get Started</strong></a
>
</div>
<div class="column"></div>
</div>
</section>
<!-- Invite Section End -->
<!-- Footer Section Start -->
<footer class="footer bg-base">
<div class="content has-text-centered has-text-white">
<div class="mb-2">
<a href="#" class="has-text-white" target="_blank">
<i class="fa-brands fa-discord"></i>
</a>
<a href="#" class="has-text-white" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</div>
<p>
<span class="has-text-weight-bold">[Your Bot]</span>
<br />
© <span id="cp-year"></span> Copyright [Bot Owner]. All Rights
Reserved.
</p>
<p style="letter-spacing: 0.1em;" class="is-uppercase">
Website Designed By
<a
href="https://jstnlt.my.id"
class="blurple has-text-weight-bold"
target="_blank"
>JstnLT</a
>.<br>The Original Website Design is Open Source on <a
href="https://github.com/JastinXyz/discord-bot-landing-page-web"
class="blurple has-text-weight-bold"
target="_blank"
>Github</a
>
</p>
</div>
</footer>
<!-- Footer Section End -->
<script src="https://unpkg.com/[email protected]/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>
</body>
</html>