-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
527 lines (423 loc) · 26.7 KB
/
index.html
File metadata and controls
527 lines (423 loc) · 26.7 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
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Favicon -->
<link rel="shortcut icon" href="./assets/favicon/favicon.ico" type="image/x-icon" />
<!-- Map CSS -->
<link rel="stylesheet" href="https://api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.css" />
<!-- Libs CSS -->
<link rel="stylesheet" href="./assets/css/libs.bundle.css" />
<!--
Theme Sans Serif CSS
Remove the "disabled" attribute if you want to enable Sans Serif for headings.
-->
<link rel="stylesheet" href="./assets/css/theme-sans-serif.bundle.css" id="themeSansSerif" disabled />
<!--
Demo JS
Remove the code below on a production website.
-->
<script src="./assets/js/demo.bundle.js"></script>
<!-- Theme CSS -->
<link rel="stylesheet" href="./assets/css/theme.bundle.css" />
<!-- Title -->
<title>Devy - Home</title>
</head>
<body>
<!-- MODALS -->
<!-- Sign in -->
<div class="modal fade" id="modalSignIn" tabindex="-1" role="dialog" aria-labelledby="modalSignInHeading" aria-hidden="true">
<div class="modal-dialog modal-sm modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body text-center">
<!-- Close -->
<button class="btn-close" data-bs-dismiss="modal" type="button" aria-label="Close"></button>
<!-- Heading -->
<h1 class="mb-4" id="modalSignInHeading">
Sign In
</h1>
<!-- Text -->
<p>
Don’t have an account? <a href="sign-up.html">Sign up</a>
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="visually-hidden" for="signInEmail">
Your email
</label>
<input class="form-control" id="signInEmail" type="email" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group">
<div class="input-group inpit-group-merge">
<input class="form-control" id="signInPassword" placeholder="Your password" type="password" aria-label="Your password" aria-describedby="signInPasswordCaption">
<a class="input-group-text text-decoration-none text-gray-500" id="signInPasswordCaption" data-toggle="password" href="#signInPassword">
<i class="fe fe-eye"></i>
</a>
</div>
</div>
<!-- Button -->
<button class="btn w-100 btn-primary">
Sign in
</button>
</form>
<!-- Link -->
<a class="fs-sm" href="password-reset.html">
Forgot your password?
</a>
</div>
</div>
</div>
</div>
<!-- Sign up -->
<div class="modal fade" id="modalSignUp" tabindex="-1" role="dialog" aria-labelledby="modalSignUpHeading" aria-hidden="true">
<div class="modal-dialog modal-sm modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body text-center">
<!-- Close -->
<button class="btn-close" data-bs-dismiss="modal" type="button" aria-label="Close"></button>
<!-- Heading -->
<h1 class="mb-4" id="modalSignUpHeading">
Sign Up
</h1>
<!-- Text -->
<p>
Create beautiful marketing websites in hours instead of weeks.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="visually-hidden" for="signUpEmail">
Your email
</label>
<input class="form-control" id="signUpEmail" type="email" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group">
<div class="input-group inpit-group-merge">
<input class="form-control" id="signUpPassword" placeholder="Your password" type="password" aria-label="Your password" aria-describedby="signUpPasswordCaption">
<a class="input-group-text text-decoration-none text-gray-500" id="signUpPasswordCaption" data-toggle="password" href="#signUpPassword">
<i class="fe fe-eye"></i>
</a>
</div>
</div>
<!-- Button -->
<button class="btn w-100 btn-primary">
Sign up
</button>
</form>
<!-- Link -->
<small class="text-muted">
Already have an account? <a href="sign-in.html">Login</a>
</small>
</div>
</div>
</div>
</div>
<!-- Password reset -->
<div class="modal fade" id="modalPasswordReset" tabindex="-1" role="dialog" aria-labelledby="modalPasswordResetHeading" aria-hidden="true">
<div class="modal-dialog modal-sm modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body text-center">
<!-- Close -->
<button class="btn-close" data-bs-dismiss="modal" type="button" aria-label="Close"></button>
<!-- Heading -->
<h1 class="display-4 mb-4" id="modalPasswordResetHeading">
Password reset
</h1>
<!-- Text -->
<p class="text-muted">
Enter your email to reset your password.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="visually-hidden" for="passwordResetEmail">
Your email
</label>
<input class="form-control" id="passwordResetEmail" type="email" placeholder="Your email">
</div>
<!-- Button -->
<button class="btn w-100 btn-primary">
Reset password
</button>
</form>
<!-- Text -->
<small class="text-muted">
Remember your password? <a href="sign-in.html">Log in</a>.
</small>
</div>
</div>
</div>
</div>
<!-- Sale -->
<div class="modal fade" id="modalSale" tabindex="-1" role="dialog" aria-labelledby="modalSaleHeading" aria-hidden="true">
<div class="modal-dialog modal-sm modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body text-center">
<!-- Close -->
<button class="btn-close" data-bs-dismiss="modal" type="button" aria-label="Close"></button>
<!-- Image -->
<img class="img-fluid mb-4 mt-n11" src="./assets/img/illustrations/illustration-4.png" alt="...">
<!-- Heading -->
<h1 class="mb-4" id="modalSaleHeading">
30 Day Free Trial
</h1>
<!-- Text -->
<p class="text-muted">
We’ll help you get started by getting you guides and all the basic informaiton.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="visually-hidden" for="saleModalEmail">
Your email
</label>
<input class="form-control" id="saleModalEmail" type="email" placeholder="Your email">
</div>
<!-- Button -->
<button class="btn w-100 btn-primary">
Start Trial
</button>
</form>
<!-- Text -->
<small class="text-muted">
<a class="text-reset" data-bs-dismiss="modal" href="#!">No thanks, I hate free stuff.</a>
</small>
</div>
</div>
</div>
</div>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container-lg">
<!-- Brand -->
<a class="navbar-brand d-lg-none" href="./index.html">✻ Devy</a>
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<!-- Navigation -->
<ul class="navbar-nav justify-content-end w-100">
<li class="nav-item">
<a class="nav-link" href="./blog.html">Blog</a>
</li>
</ul>
<!-- Brand -->
<a class="navbar-brand d-none d-lg-block px-lg-6" href="./index.html">✻ Devy</a>
<!-- Navigation -->
<ul class="navbar-nav justify-content-start w-100">
<li class="nav-item">
<a class="nav-link" href="./faq.html">FAQ</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- WELCOME -->
<section class="pt-6 pt-md-11 pb-8 pb-md-9">
<div class="container-lg">
<div class="row justify-content-center">
<div class="col-md-12 col-xl-10 text-center">
<!-- Heading -->
<h1 class="display-2 mb-4">
A new command line <br class="d-none d-md-inline" />
<span class="text-underline-warning">for 2024 devs</span>.
</h1>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6 text-center">
<!-- Text -->
<p class="lead text-muted">
Use the terminal without having to remember every command, or type it correctly.
</p>
</div>
</div>
</div>
</section>
<!-- SHAPE -->
<div class="position-relative">
<div class="shape shape-fluid-x shape-bottom text-white pb-18">
<div class="shape-img pb-9 pb-md-15">
<svg viewBox="0 0 100 50" preserveAspectRatio="none"><path d="M0 0h100v25H75L25 50H0z" fill="currentColor"/></svg> </div>
</div>
</div>
<!-- VIDEO -->
<section>
<div class="container-lg">
<div class="row align-items-center mb-9 mb-md-10">
<div class="col-12">
<!-- Decoration -->
<div class="position-absolute top-end text-primary-light mt-n10 me-n8">
<svg width="185" height="186" viewBox="0 0 185 186" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="currentColor"/><circle cx="22" cy="2" r="2" fill="currentColor"/><circle cx="42" cy="2" r="2" fill="currentColor"/><circle cx="62" cy="2" r="2" fill="currentColor"/><circle cx="82" cy="2" r="2" fill="currentColor"/><circle cx="102" cy="2" r="2" fill="currentColor"/><circle cx="122" cy="2" r="2" fill="currentColor"/><circle cx="142" cy="2" r="2" fill="currentColor"/><circle cx="162" cy="2" r="2" fill="currentColor"/><circle cx="182" cy="2" r="2" fill="currentColor"/><circle cx="2" cy="22" r="2" fill="currentColor"/><circle cx="22" cy="22" r="2" fill="currentColor"/><circle cx="42" cy="22" r="2" fill="currentColor"/><circle cx="62" cy="22" r="2" fill="currentColor"/><circle cx="82" cy="22" r="2" fill="currentColor"/><circle cx="102" cy="22" r="2" fill="currentColor"/><circle cx="122" cy="22" r="2" fill="currentColor"/><circle cx="142" cy="22" r="2" fill="currentColor"/><circle cx="162" cy="22" r="2" fill="currentColor"/><circle cx="182" cy="22" r="2" fill="currentColor"/><circle cx="2" cy="42" r="2" fill="currentColor"/><circle cx="22" cy="42" r="2" fill="currentColor"/><circle cx="42" cy="42" r="2" fill="currentColor"/><circle cx="62" cy="42" r="2" fill="currentColor"/><circle cx="82" cy="42" r="2" fill="currentColor"/><circle cx="102" cy="42" r="2" fill="currentColor"/><circle cx="122" cy="42" r="2" fill="currentColor"/><circle cx="142" cy="42" r="2" fill="currentColor"/><circle cx="162" cy="42" r="2" fill="currentColor"/><circle cx="182" cy="42" r="2" fill="currentColor"/><circle cx="2" cy="62" r="2" fill="currentColor"/><circle cx="22" cy="62" r="2" fill="currentColor"/><circle cx="42" cy="62" r="2" fill="currentColor"/><circle cx="62" cy="62" r="2" fill="currentColor"/><circle cx="82" cy="62" r="2" fill="currentColor"/><circle cx="102" cy="62" r="2" fill="currentColor"/><circle cx="122" cy="62" r="2" fill="currentColor"/><circle cx="142" cy="62" r="2" fill="currentColor"/><circle cx="162" cy="62" r="2" fill="currentColor"/><circle cx="182" cy="62" r="2" fill="currentColor"/><circle cx="2" cy="82" r="2" fill="currentColor"/><circle cx="22" cy="82" r="2" fill="currentColor"/><circle cx="42" cy="82" r="2" fill="currentColor"/><circle cx="62" cy="82" r="2" fill="currentColor"/><circle cx="82" cy="82" r="2" fill="currentColor"/><circle cx="102" cy="82" r="2" fill="currentColor"/><circle cx="122" cy="82" r="2" fill="currentColor"/><circle cx="142" cy="82" r="2" fill="currentColor"/><circle cx="162" cy="82" r="2" fill="currentColor"/><circle cx="182" cy="82" r="2" fill="currentColor"/><circle cx="2" cy="102" r="2" fill="currentColor"/><circle cx="22" cy="102" r="2" fill="currentColor"/><circle cx="42" cy="102" r="2" fill="currentColor"/><circle cx="62" cy="102" r="2" fill="currentColor"/><circle cx="82" cy="102" r="2" fill="currentColor"/><circle cx="102" cy="102" r="2" fill="currentColor"/><circle cx="122" cy="102" r="2" fill="currentColor"/><circle cx="142" cy="102" r="2" fill="currentColor"/><circle cx="162" cy="102" r="2" fill="currentColor"/><circle cx="182" cy="102" r="2" fill="currentColor"/><circle cx="2" cy="122" r="2" fill="currentColor"/><circle cx="22" cy="122" r="2" fill="currentColor"/><circle cx="42" cy="122" r="2" fill="currentColor"/><circle cx="62" cy="122" r="2" fill="currentColor"/><circle cx="82" cy="122" r="2" fill="currentColor"/><circle cx="102" cy="122" r="2" fill="currentColor"/><circle cx="122" cy="122" r="2" fill="currentColor"/><circle cx="142" cy="122" r="2" fill="currentColor"/><circle cx="162" cy="122" r="2" fill="currentColor"/><circle cx="182" cy="122" r="2" fill="currentColor"/><circle cx="2" cy="142" r="2" fill="currentColor"/><circle cx="22" cy="142" r="2" fill="currentColor"/><circle cx="42" cy="142" r="2" fill="currentColor"/><circle cx="62" cy="142" r="2" fill="currentColor"/><circle cx="82" cy="142" r="2" fill="currentColor"/><circle cx="102" cy="142" r="2" fill="currentColor"/><circle cx="122" cy="142" r="2" fill="currentColor"/><circle cx="142" cy="142" r="2" fill="currentColor"/><circle cx="162" cy="142" r="2" fill="currentColor"/><circle cx="182" cy="142" r="2" fill="currentColor"/><circle cx="2" cy="162" r="2" fill="currentColor"/><circle cx="22" cy="162" r="2" fill="currentColor"/><circle cx="42" cy="162" r="2" fill="currentColor"/><circle cx="62" cy="162" r="2" fill="currentColor"/><circle cx="82" cy="162" r="2" fill="currentColor"/><circle cx="102" cy="162" r="2" fill="currentColor"/><circle cx="122" cy="162" r="2" fill="currentColor"/><circle cx="142" cy="162" r="2" fill="currentColor"/><circle cx="162" cy="162" r="2" fill="currentColor"/><circle cx="182" cy="162" r="2" fill="currentColor"/><circle cx="2" cy="182" r="2" fill="currentColor"/><circle cx="22" cy="182" r="2" fill="currentColor"/><circle cx="42" cy="182" r="2" fill="currentColor"/><circle cx="62" cy="182" r="2" fill="currentColor"/><circle cx="82" cy="182" r="2" fill="currentColor"/><circle cx="102" cy="182" r="2" fill="currentColor"/><circle cx="122" cy="182" r="2" fill="currentColor"/><circle cx="142" cy="182" r="2" fill="currentColor"/><circle cx="162" cy="182" r="2" fill="currentColor"/><circle cx="182" cy="182" r="2" fill="currentColor"/></svg> </div>
<!-- Image -->
<img class="position-relative img-fluid rounded" src="assets/img/demo.gif" alt="...">
</div>
</div>
</div>
</section>
<!-- SHAPE -->
<div class="position-relative">
<div class="shape shape-fluid-x shape-bottom text-white">
<div class="shape-img pb-8 pb-md-11">
<svg viewBox="0 0 100 50" preserveAspectRatio="none"><path d="M0 0h100v25H75L25 50H0z" fill="currentColor"/></svg> </div>
</div>
</div>
<!-- DECORATION -->
<div class="position-relative d-none d-mb-block">
<div class="position-absolute top-start text-warning ms-n9 mt-n2">
<svg width="185" height="186" viewBox="0 0 185 186" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="currentColor"/><circle cx="22" cy="2" r="2" fill="currentColor"/><circle cx="42" cy="2" r="2" fill="currentColor"/><circle cx="62" cy="2" r="2" fill="currentColor"/><circle cx="82" cy="2" r="2" fill="currentColor"/><circle cx="102" cy="2" r="2" fill="currentColor"/><circle cx="122" cy="2" r="2" fill="currentColor"/><circle cx="142" cy="2" r="2" fill="currentColor"/><circle cx="162" cy="2" r="2" fill="currentColor"/><circle cx="182" cy="2" r="2" fill="currentColor"/><circle cx="2" cy="22" r="2" fill="currentColor"/><circle cx="22" cy="22" r="2" fill="currentColor"/><circle cx="42" cy="22" r="2" fill="currentColor"/><circle cx="62" cy="22" r="2" fill="currentColor"/><circle cx="82" cy="22" r="2" fill="currentColor"/><circle cx="102" cy="22" r="2" fill="currentColor"/><circle cx="122" cy="22" r="2" fill="currentColor"/><circle cx="142" cy="22" r="2" fill="currentColor"/><circle cx="162" cy="22" r="2" fill="currentColor"/><circle cx="182" cy="22" r="2" fill="currentColor"/><circle cx="2" cy="42" r="2" fill="currentColor"/><circle cx="22" cy="42" r="2" fill="currentColor"/><circle cx="42" cy="42" r="2" fill="currentColor"/><circle cx="62" cy="42" r="2" fill="currentColor"/><circle cx="82" cy="42" r="2" fill="currentColor"/><circle cx="102" cy="42" r="2" fill="currentColor"/><circle cx="122" cy="42" r="2" fill="currentColor"/><circle cx="142" cy="42" r="2" fill="currentColor"/><circle cx="162" cy="42" r="2" fill="currentColor"/><circle cx="182" cy="42" r="2" fill="currentColor"/><circle cx="2" cy="62" r="2" fill="currentColor"/><circle cx="22" cy="62" r="2" fill="currentColor"/><circle cx="42" cy="62" r="2" fill="currentColor"/><circle cx="62" cy="62" r="2" fill="currentColor"/><circle cx="82" cy="62" r="2" fill="currentColor"/><circle cx="102" cy="62" r="2" fill="currentColor"/><circle cx="122" cy="62" r="2" fill="currentColor"/><circle cx="142" cy="62" r="2" fill="currentColor"/><circle cx="162" cy="62" r="2" fill="currentColor"/><circle cx="182" cy="62" r="2" fill="currentColor"/><circle cx="2" cy="82" r="2" fill="currentColor"/><circle cx="22" cy="82" r="2" fill="currentColor"/><circle cx="42" cy="82" r="2" fill="currentColor"/><circle cx="62" cy="82" r="2" fill="currentColor"/><circle cx="82" cy="82" r="2" fill="currentColor"/><circle cx="102" cy="82" r="2" fill="currentColor"/><circle cx="122" cy="82" r="2" fill="currentColor"/><circle cx="142" cy="82" r="2" fill="currentColor"/><circle cx="162" cy="82" r="2" fill="currentColor"/><circle cx="182" cy="82" r="2" fill="currentColor"/><circle cx="2" cy="102" r="2" fill="currentColor"/><circle cx="22" cy="102" r="2" fill="currentColor"/><circle cx="42" cy="102" r="2" fill="currentColor"/><circle cx="62" cy="102" r="2" fill="currentColor"/><circle cx="82" cy="102" r="2" fill="currentColor"/><circle cx="102" cy="102" r="2" fill="currentColor"/><circle cx="122" cy="102" r="2" fill="currentColor"/><circle cx="142" cy="102" r="2" fill="currentColor"/><circle cx="162" cy="102" r="2" fill="currentColor"/><circle cx="182" cy="102" r="2" fill="currentColor"/><circle cx="2" cy="122" r="2" fill="currentColor"/><circle cx="22" cy="122" r="2" fill="currentColor"/><circle cx="42" cy="122" r="2" fill="currentColor"/><circle cx="62" cy="122" r="2" fill="currentColor"/><circle cx="82" cy="122" r="2" fill="currentColor"/><circle cx="102" cy="122" r="2" fill="currentColor"/><circle cx="122" cy="122" r="2" fill="currentColor"/><circle cx="142" cy="122" r="2" fill="currentColor"/><circle cx="162" cy="122" r="2" fill="currentColor"/><circle cx="182" cy="122" r="2" fill="currentColor"/><circle cx="2" cy="142" r="2" fill="currentColor"/><circle cx="22" cy="142" r="2" fill="currentColor"/><circle cx="42" cy="142" r="2" fill="currentColor"/><circle cx="62" cy="142" r="2" fill="currentColor"/><circle cx="82" cy="142" r="2" fill="currentColor"/><circle cx="102" cy="142" r="2" fill="currentColor"/><circle cx="122" cy="142" r="2" fill="currentColor"/><circle cx="142" cy="142" r="2" fill="currentColor"/><circle cx="162" cy="142" r="2" fill="currentColor"/><circle cx="182" cy="142" r="2" fill="currentColor"/><circle cx="2" cy="162" r="2" fill="currentColor"/><circle cx="22" cy="162" r="2" fill="currentColor"/><circle cx="42" cy="162" r="2" fill="currentColor"/><circle cx="62" cy="162" r="2" fill="currentColor"/><circle cx="82" cy="162" r="2" fill="currentColor"/><circle cx="102" cy="162" r="2" fill="currentColor"/><circle cx="122" cy="162" r="2" fill="currentColor"/><circle cx="142" cy="162" r="2" fill="currentColor"/><circle cx="162" cy="162" r="2" fill="currentColor"/><circle cx="182" cy="162" r="2" fill="currentColor"/><circle cx="2" cy="182" r="2" fill="currentColor"/><circle cx="22" cy="182" r="2" fill="currentColor"/><circle cx="42" cy="182" r="2" fill="currentColor"/><circle cx="62" cy="182" r="2" fill="currentColor"/><circle cx="82" cy="182" r="2" fill="currentColor"/><circle cx="102" cy="182" r="2" fill="currentColor"/><circle cx="122" cy="182" r="2" fill="currentColor"/><circle cx="142" cy="182" r="2" fill="currentColor"/><circle cx="162" cy="182" r="2" fill="currentColor"/><circle cx="182" cy="182" r="2" fill="currentColor"/></svg> </div>
</div>
<!-- CASES -->
<section class="pt-13 pt-md-13 pb-11 pb-md-16 bg-gray-900"
style="background-image: url(assets/img/patterns/pattern-1.svg);">
<div class="container-lg">
<div class="row justify-content-center" data-aos="fade-up">
<div class="col-12 text-center text-white">
<!-- Preheading -->
<h6 class="text-uppercase text-warning mb-5">
Get Started Quickly
</h6>
<!-- Heading -->
<h1 class="display-3 mb-4">
The Last Command
</h1>
</div>
</div>
<div class="row justify-content-center" data-aos="fade-up" data-aos-delay="100">
<div class="col-md-8 col-lg-6 text-center text-white">
<!-- Text -->
<p class="fs-lg">
We hope that you will never have to remember another command again, ever.
</p>
<!-- Form -->
<form>
<div class="input-group rounded-top-start rounded-bottom-end shadow">
<!-- Input -->
<input class="form-control bg-white" disabled="true" type="text" value="npm i -g @bitosoft/devy"
aria-label="Install command" style="font-family: monospace;" aria-describedby="subscriptionButton">
<!-- Button -->
<button class="btn btn-white" type="button" id="copyButton">
Copy
</button>
</div>
</form>
</div>
</div>
</div>
</section>
<script defer>
document.getElementById('copyButton').addEventListener('click', function () {
navigator.clipboard.writeText('npm i -g @bitosoft/devy');
});
</script>
<!-- SHAPE -->
<!-- <div class="position-relative">
<div class="shape shape-fluid-x shape-top text-dark pt-15">
<div class="shape-img pb-8 pb-md-12">
<svg viewBox="0 0 100 50" preserveAspectRatio="none"><path d="M0 25h25L75 0h25v50H0z" fill="currentColor"/></svg> </div>
</div>
</div> -->
<!-- FOOTER -->
<footer class="footer text-center py-0 pt-8 pt-md-11 bg-dark border-multicolor">
<div class="container-lg">
<div class="row">
<h2 class="font-serif text-white mb-2 display-4">
✻ Devy
</h2>
<p class="text-white-60">Command line for the next generation of techies.</p>
</div>
<div class="row align-items-center justify-content-center">
<div class="col-12 col-md-auto">
<!-- Footer Links -->
<ul class="list-inline list-unstyled text-gray-600 mb-0">
<li class="list-inline-item">
<a class="text-warning" href="/about.html">About</a>
</li>
<li class="list-inline-item ms-5">
<a class="text-warning" href="/blog.html">Blog</a>
</li>
<li class="list-inline-item ms-5">
<a class="text-warning" href="/faq.html">FAQ</a>
</li>
<li class="list-inline-item ms-5">
<a class="text-warning" href="/docs.html">Docs</a>
</li>
<li class="list-inline-item ms-5">
<a class="text-warning" href="/pricing.html">Pricing</a>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-12">
<!-- Divider -->
<hr class="text-white-10 my-7">
</div>
</div>
<div class="row pb-8">
<div class="col-12 col-md-8">
<!-- Legal -->
<ul class="list-inline list-unstyled text-gray-600 small mb-md-0" style="text-align: start;">
<li class="list-inline-item">
© <a class="text-reset" target="_blank" href="/index-orig.html">2024</a> Devy
</li>
<li class="list-inline-item ms-md-8">
<a class="text-reset" href="/privacy-policy.html">
Privacy Policy
</a>
</li>
<li class="list-inline-item ms-md-8">
<a class="text-reset" href="/terms-of-service.html">
Terms of Service
</a>
</li>
</ul>
</div>
<div class="col-12 col-md-4">
<!-- Social -->
<ul class="list-inline list-unstyled text-gray-600 mb-0" style="text-align: end;">
<li class="list-inline-item">
<small class="text-gray-600">
Made with ❤️ by Bitosoft
</small>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- JAVASCRIPT -->
<!-- Map JS -->
<script src='https://api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.js'></script>
<!-- Vendor JS -->
<script src="./assets/js/vendor.bundle.js"></script>
<!-- Theme JS -->
<script src="./assets/js/theme.bundle.js"></script>
<!-- JAVASCRIPT -->
<!-- Map JS -->
<script src='https://api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.js'></script>
<!-- Vendor JS -->
<script src="./assets/js/vendor.bundle.js"></script>
<!-- Theme JS -->
<script src="./assets/js/theme.bundle.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2R6YY7YSBG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2R6YY7YSBG');
</script>
</body>
</html>