-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2120 lines (1752 loc) · 245 KB
/
index.html
File metadata and controls
2120 lines (1752 loc) · 245 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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Libs CSS -->
<link rel="stylesheet" href="./assets/fonts/Feather/feather.css">
<link rel="stylesheet" href="./assets/libs/flickity/dist/flickity.min.css">
<link rel="stylesheet" href="./assets/libs/flickity-fade/flickity-fade.css">
<link rel="stylesheet" href="./assets/libs/aos/dist/aos.css">
<link rel="stylesheet" href="./assets/libs/jarallax/dist/jarallax.css">
<link rel="stylesheet" href="./assets/libs/highlightjs/styles/vs2015.css">
<link rel="stylesheet" href="./assets/libs/@fancyapps/fancybox/dist/jquery.fancybox.min.css">
<!-- Map -->
<link href='https://api.mapbox.com/mapbox-gl-js/v0.53.0/mapbox-gl.css' rel='stylesheet' />
<!-- Theme CSS -->
<link rel="stylesheet" href="./assets/css/theme.min.css">
<title>Landkit</title>
</head>
<body>
<!-- MODALS
================================================== -->
<!-- Example -->
<div class="modal fade" id="modalExample" tabindex="-1" role="dialog" aria-labelledby="modalExampleTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<!-- Close -->
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Image -->
<div class="text-center">
<img src="../assets/img/illustrations/illustration-1.png" alt="..." class="img-fluid mb-3" style="width: 200px;">
</div>
<!-- Heading -->
<h2 class="font-weight-bold text-center mb-1" id="modalExampleTitle">
Schedule a demo with us
</h2>
<!-- Text -->
<p class="font-size-lg text-center text-muted mb-6 mb-md-8">
We can help you solve company communication.
</p>
<!-- Form -->
<form>
<div class="row">
<div class="col-12 col-md-6">
<!-- First name -->
<div class="form-label-group">
<input type="text" class="form-control form-control-flush" id="registrationFirstNameModal" placeholder="First name">
<label for="registrationFirstNameModal">First name</label>
</div>
</div>
<div class="col-12 col-md-6">
<!-- Last name -->
<div class="form-label-group">
<input type="text" class="form-control form-control-flush" id="registrationLastNameModal" placeholder="Last name">
<label for="registrationLastNameModal">Last name</label>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-6">
<!-- Email -->
<div class="form-label-group">
<input type="email" class="form-control form-control-flush" id="registrationEmailModal" placeholder="Email">
<label for="registrationEmailModal">Email</label>
</div>
</div>
<div class="col-12 col-md-6">
<!-- Password -->
<div class="form-label-group">
<input type="password" class="form-control form-control-flush" id="registrationPasswordModal" placeholder="Password">
<label for="registrationPasswordModal">Password</label>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<!-- Submit -->
<button class="btn btn-block btn-primary mt-3 lift">
Request a demo
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Signup: Horizontal -->
<div class="modal fade" id="modalSignupHorizontal" tabindex="-1" role="dialog" aria-labelledby="modalSignupHorizontalTitle" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="card card-row">
<div class="row no-gutters">
<div class="col-12 col-md-6 bg-cover card-img-left" style="background-image: url(./assets/img/photos/photo-8.jpg);">
<!-- Image (placeholder) -->
<img src="./assets/img/photos/photo-8.jpg" alt="..." class="img-fluid d-md-none invisible">
<!-- Shape -->
<div class="shape shape-right shape-fluid-y svg-shim text-white d-none d-md-block">
<svg viewBox="0 0 112 690" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M116 0H51V172C76 384 0 517 0 517V690H116V0Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="col-12 col-md-6">
<div class="card-body">
<!-- Close -->
<button type="button" class="modal-close close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Heading -->
<h2 class="mb-0 font-weight-bold text-center" id="modalSignupHorizontalTitle">
Sign Up
</h2>
<!-- Text -->
<p class="mb-6 text-center text-muted">
Simplify your workflow in minutes.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="sr-only" for="modalSignupHorizontalEmail">
Your email
</label>
<input type="email" class="form-control" id="modalSignupHorizontalEmail" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group mb-5">
<label class="sr-only" for="modalSignupHorizontalPassword">
Create a password
</label>
<input type="password" class="form-control" id="modalSignupHorizontalPassword" placeholder="Create a password">
</div>
<!-- Submit -->
<button class="btn btn-block btn-primary" type="submit">
Sign up
</button>
</form>
<!-- Text -->
<p class="mb-0 font-size-sm text-center text-muted">
Already have an account? <a href="./signin-illustration.html">Log in</a>.
</p>
</div>
</div>
</div> <!-- / .row -->
</div>
</div>
</div>
</div>
<!-- Signup: Vertical -->
<div class="modal fade" id="modalSignupVertical" tabindex="-1" role="dialog" aria-labelledby="modalSignupVerticalTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="card">
<!-- Close -->
<button type="button" class="modal-close close text-white" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Image -->
<img src="./assets/img/photos/photo-7.jpg" alt="..." class="card-img-top">
<!-- Shape -->
<div class="position-relative">
<div class="shape shape-bottom shape-fluid-x svg-shim text-white">
<svg viewBox="0 0 2880 480" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2160 0C1440 240 720 240 720 240H0V480H2880V0H2160Z" fill="currentColor"/>
</svg>
</div>
</div>
<!-- Body -->
<div class="card-body">
<!-- Heading -->
<h2 class="mb-0 font-weight-bold text-center" id="modalSignupVerticalTitle">
Sign Up
</h2>
<!-- Text -->
<p class="mb-6 text-center text-muted">
Simplify your workflow in minutes.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="sr-only" for="modalSignupVerticalEmail">
Your email
</label>
<input type="email" class="form-control" id="modalSignupVerticalEmail" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group mb-5">
<label class="sr-only" for="modalSignupVerticalPassword">
Create a password
</label>
<input type="password" class="form-control" id="modalSignupVerticalPassword" placeholder="Create a password">
</div>
<!-- Submit -->
<button class="btn btn-block btn-primary" type="submit">
Sign up
</button>
</form>
<!-- Text -->
<p class="mb-0 font-size-sm text-center text-muted">
Already have an account? <a href="./signin-illustration.html">Log in</a>.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Signin: Horizontal -->
<div class="modal fade" id="modalSigninHorizontal" tabindex="-1" role="dialog" aria-labelledby="modalSigninHorizontalTitle" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered" role="document">
<div class="modal-content">
<div class="card card-row">
<div class="row no-gutters">
<div class="col-12 col-md-6 bg-cover card-img-left" style="background-image: url(./assets/img/photos/photo-1.jpg);">
<!-- Image (placeholder) -->
<img src="./assets/img/photos/photo-1.jpg" alt="..." class="img-fluid d-md-none invisible">
<!-- Shape -->
<div class="shape shape-right shape-fluid-y svg-shim text-white d-none d-md-block">
<svg viewBox="0 0 112 690" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M116 0H51V172C76 384 0 517 0 517V690H116V0Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="col-12 col-md-6">
<div class="card-body">
<!-- Close -->
<button type="button" class="modal-close close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Heading -->
<h2 class="mb-0 font-weight-bold text-center" id="modalSigninHorizontalTitle">
Sign In
</h2>
<!-- Text -->
<p class="mb-6 text-center text-muted">
Simplify your workflow in minutes.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="sr-only" for="modalSigninHorizontalEmail">
Your email
</label>
<input type="email" class="form-control" id="modalSigninHorizontalEmail" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group mb-5">
<label class="sr-only" for="modalSigninHorizontalPassword">
Create a password
</label>
<input type="password" class="form-control" id="modalSigninHorizontalPassword" placeholder="Create a password">
</div>
<!-- Submit -->
<button class="btn btn-block btn-primary" type="submit">
Sign in
</button>
</form>
<!-- Text -->
<p class="mb-0 font-size-sm text-center text-muted">
Don't have an account yet? <a href="./signin-illustration.html">Sign up</a>.
</p>
</div>
</div>
</div> <!-- / .row -->
</div>
</div>
</div>
</div>
<!-- Signup: Vertical -->
<div class="modal fade" id="modalSigninVertical" tabindex="-1" role="dialog" aria-labelledby="modalSigninVerticalTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="card">
<!-- Close -->
<button type="button" class="modal-close close text-white" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Image -->
<img src="./assets/img/photos/photo-21.jpg" alt="..." class="card-img-top">
<!-- Shape -->
<div class="position-relative">
<div class="shape shape-bottom shape-fluid-x svg-shim text-white">
<svg viewBox="0 0 2880 480" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2160 0C1440 240 720 240 720 240H0V480H2880V0H2160Z" fill="currentColor"/>
</svg>
</div>
</div>
<!-- Body -->
<div class="card-body">
<!-- Heading -->
<h2 class="mb-0 font-weight-bold text-center" id="modalSigninVerticalTitle">
Sign In
</h2>
<!-- Text -->
<p class="mb-6 text-center text-muted">
Simplify your workflow in minutes.
</p>
<!-- Form -->
<form class="mb-6">
<!-- Email -->
<div class="form-group">
<label class="sr-only" for="modalSigninVerticalEmail">
Your email
</label>
<input type="email" class="form-control" id="modalSigninVerticalEmail" placeholder="Your email">
</div>
<!-- Password -->
<div class="form-group mb-5">
<label class="sr-only" for="modalSigninVerticalPassword">
Create a password
</label>
<input type="password" class="form-control" id="modalSigninVerticalPassword" placeholder="Create a password">
</div>
<!-- Submit -->
<button class="btn btn-block btn-primary" type="submit">
Sign in
</button>
</form>
<!-- Text -->
<p class="mb-0 font-size-sm text-center text-muted">
Don't have an account yet? <a href="./signin-illustration.html">Sign up</a>.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- NAVBAR
================================================== -->
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<div class="container">
<!-- Brand -->
<a class="navbar-brand" href="./index.html">
<img src="./assets/img/brand.svg" class="navbar-brand-img" alt="...">
</a>
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="fe fe-x"></i>
</button>
<!-- Navigation -->
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarLandings" data-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Landings
</a>
<div class="dropdown-menu dropdown-menu-xl p-0" aria-labelledby="navbarLandings">
<div class="row no-gutters">
<div class="col-12 col-lg-6">
<div class="dropdown-img-left" style="background-image: url(./assets/img/photos/photo-3.jpg);">
<!-- Heading -->
<h4 class="font-weight-bold text-white mb-0">
Want to see an overview?
</h4>
<!-- Text -->
<p class="font-size-sm text-white">
See all the pages at once.
</p>
<!-- Button -->
<a href="./overview.html" class="btn btn-sm btn-white shadow-dark fonFt-size-sm">
View all pages
</a>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="dropdown-body">
<div class="row no-gutters">
<div class="col-6">
<!-- Heading -->
<h6 class="dropdown-header">
Services
</h6>
<!-- List -->
<a class="dropdown-item" href="./coworking.html">
Coworking
</a>
<a class="dropdown-item" href="./rental.html">
Rental
</a>
<a class="dropdown-item mb-5" href="./job.html">
Job Listing
</a>
<!-- Heading -->
<h6 class="dropdown-header">
Apps
</h6>
<!-- List -->
<a class="dropdown-item" href="./desktop-app.html">
Desktop
</a>
<a class="dropdown-item" href="./mobile-app.html">
Mobile
</a>
</div>
<div class="col-6">
<!-- Heading -->
<h6 class="dropdown-header">
Web
</h6>
<!-- List -->
<a class="dropdown-item" href="./index.html">
Basic
</a>
<a class="dropdown-item" href="./enterprise.html">
Enterprise
</a>
<a class="dropdown-item" href="./service.html">
Service
</a>
<a class="dropdown-item" href="./cloud.html">
Cloud Hosting
</a>
<a class="dropdown-item" href="./agency.html">
Agency <span class="h6 text-uppercase text-primary">(new)</span>
</a>
</div>
</div> <!-- / .row -->
</div>
</div>
</div> <!-- / .row -->
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarPages" data-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Pages
</a>
<div class="dropdown-menu dropdown-menu-lg" aria-labelledby="navbarPages">
<div class="row no-gutters">
<div class="col-6">
<div class="row no-gutters">
<div class="col-12 col-lg-6">
<!-- Heading -->
<h6 class="dropdown-header">
Career
</h6>
<!-- List -->
<a class="dropdown-item" href="./careers.html">
Listing
</a>
<a class="dropdown-item mb-5" href="./career-single.html">
Opening
</a>
<!-- Heading -->
<h6 class="dropdown-header">
Company
</h6>
<!-- List -->
<a class="dropdown-item" href="./about.html">
About
</a>
<a class="dropdown-item" href="./pricing.html">
Pricing
</a>
<a class="dropdown-item mb-5 mb-lg-0" href="./terms-of-service.html">
Terms
</a>
</div>
<div class="col-12 col-lg-6">
<!-- Heading -->
<h6 class="dropdown-header">
Help center
</h6>
<!-- List -->
<a class="dropdown-item" href="./help-center.html">
Overview
</a>
<a class="dropdown-item mb-5" href="./help-center-article.html">
Article
</a>
<!-- Heading -->
<h6 class="dropdown-header">
Contact
</h6>
<!-- List -->
<a class="dropdown-item" href="./contact.html">
Basic
</a>
<a class="dropdown-item" href="./contact-alt.html">
Cover
</a>
</div>
</div>
</div>
<div class="col-6">
<div class="row no-gutters">
<div class="col-12 col-lg-6">
<!-- Heading -->
<h6 class="dropdown-header">
Blog
</h6>
<!-- List -->
<a class="dropdown-item" href="./blog.html">
Rich View
</a>
<a class="dropdown-item" href="./blog-post.html">
Article
</a>
<a class="dropdown-item" href="./blog-showcase.html">
Showcase
</a>
<a class="dropdown-item mb-5 mb-lg-0" href="./blog-search.html">
Search
</a>
</div>
<div class="col-12 col-lg-6">
<!-- Heading -->
<h6 class="dropdown-header">
Portfolio <span class="h6 text-uppercase text-primary">(new)</span>
</h6>
<!-- List -->
<a class="dropdown-item" href="./portfolio-masonry.html">
Masonry
</a>
<a class="dropdown-item" href="./portfolio-grid-rows.html">
Grid Rows
</a>
<a class="dropdown-item" href="./portfolio-parallax.html">
Parallax
</a>
<a class="dropdown-item" href="./portfolio-case-study.html">
Case Study
</a>
<a class="dropdown-item" href="./portfolio-sidebar.html">
Sidebar
</a>
<a class="dropdown-item" href="./portfolio-sidebar-fluid.html">
Sidebar: Fluid
</a>
<a class="dropdown-item" href="./portfolio-grid.html">
Basic Grid
</a>
</div>
</div>
</div>
</div>
</div> <!-- / .row -->
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarAccount" data-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Account
</a>
<ul class="dropdown-menu" aria-labelledby="navbarAccount">
<li class="dropdown-item dropright">
<a class="dropdown-link dropdown-toggle" data-toggle="dropdown" href="#">
Sign In
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="./signin-cover.html">
Side Cover
</a>
<a class="dropdown-item" href="./signin-illustration.html">
Illustration
</a>
<a class="dropdown-item" href="./signin.html">
Basic
</a>
<a class="dropdown-item" data-toggle="modal" href="#modalSigninHorizontal">
Modal Horizontal
</a>
<a class="dropdown-item" data-toggle="modal" href="#modalSigninVertical">
Modal Vertical
</a>
</div>
</li>
<li class="dropdown-item dropright">
<a class="dropdown-link dropdown-toggle" data-toggle="dropdown" href="#">
Sign Up
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="./signup-cover.html">
Side Cover
</a>
<a class="dropdown-item" href="./signup-illustration.html">
Illustration
</a>
<a class="dropdown-item" href="./signup.html">
Basic
</a>
<a class="dropdown-item" data-toggle="modal" href="#modalSignupHorizontal">
Modal Horizontal
</a>
<a class="dropdown-item" data-toggle="modal" href="#modalSignupVertical">
Modal Vertical
</a>
</div>
</li>
<li class="dropdown-item dropright">
<a class="dropdown-link dropdown-toggle" data-toggle="dropdown" href="#">
Password Reset
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="./password-reset-cover.html">
Side Cover
</a>
<a class="dropdown-item" href="./password-reset-illustration.html">
Illustration
</a>
<a class="dropdown-item" href="./password-reset.html">
Basic
</a>
</div>
</li>
<li class="dropdown-item dropright">
<a class="dropdown-link dropdown-toggle" data-toggle="dropdown" href="#">
Error
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="./error-cover.html">
Side Cover
</a>
<a class="dropdown-item" href="./error-illustration.html">
Illustration
</a>
<a class="dropdown-item" href="./error.html">
Basic
</a>
</div>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDocumentation" data-toggle="dropdown" href="#" aria-haspopup="true" aria-expanded="false">
Documentation
</a>
<div class="dropdown-menu dropdown-menu-md" aria-labelledby="navbarDocumentation">
<div class="list-group list-group-flush">
<a class="list-group-item" href="./docs/index.html">
<!-- Icon -->
<div class="icon icon-sm text-primary">
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
<title>Stockholm-icons / General / Clipboard</title>
<desc>Created with Sketch.</desc>
<g id="Stockholm-icons-/-General-/-Clipboard" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect id="bound" x="0" y="0" width="24" height="24"></rect>
<path d="M8,3 L8,3.5 C8,4.32842712 8.67157288,5 9.5,5 L14.5,5 C15.3284271,5 16,4.32842712 16,3.5 L16,3 L18,3 C19.1045695,3 20,3.8954305 20,5 L20,21 C20,22.1045695 19.1045695,23 18,23 L6,23 C4.8954305,23 4,22.1045695 4,21 L4,5 C4,3.8954305 4.8954305,3 6,3 L8,3 Z" id="Combined-Shape" fill="#335EEA" opacity="0.3"></path>
<path d="M11,2 C11,1.44771525 11.4477153,1 12,1 C12.5522847,1 13,1.44771525 13,2 L14.5,2 C14.7761424,2 15,2.22385763 15,2.5 L15,3.5 C15,3.77614237 14.7761424,4 14.5,4 L9.5,4 C9.22385763,4 9,3.77614237 9,3.5 L9,2.5 C9,2.22385763 9.22385763,2 9.5,2 L11,2 Z" id="Combined-Shape" fill="#335EEA"></path>
<rect id="Rectangle-152" fill="#335EEA" opacity="0.3" x="7" y="10" width="5" height="2" rx="1"></rect>
<rect id="Rectangle-152-Copy" fill="#335EEA" opacity="0.3" x="7" y="14" width="9" height="2" rx="1"></rect>
</g>
</svg>
</div>
<!-- Content -->
<div class="ml-4">
<!-- Heading -->
<h6 class="font-weight-bold text-uppercase text-primary mb-0">
Documentation
</h6>
<!-- Text -->
<p class="font-size-sm text-gray-700 mb-0">
Customizing and building
</p>
</div>
</a>
<a class="list-group-item" href="./docs/alerts.html">
<!-- Icon -->
<div class="icon icon-sm text-primary">
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
<title>Stockholm-icons / Layout / Layout-4-blocks</title>
<desc>Created with Sketch.</desc>
<g id="Stockholm-icons-/-Layout-/-Layout-4-blocks" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect id="bound" x="0" y="0" width="24" height="24"></rect>
<rect id="Rectangle-7" fill="#335EEA" x="4" y="4" width="7" height="7" rx="1.5"></rect>
<path d="M5.5,13 L9.5,13 C10.3284271,13 11,13.6715729 11,14.5 L11,18.5 C11,19.3284271 10.3284271,20 9.5,20 L5.5,20 C4.67157288,20 4,19.3284271 4,18.5 L4,14.5 C4,13.6715729 4.67157288,13 5.5,13 Z M14.5,4 L18.5,4 C19.3284271,4 20,4.67157288 20,5.5 L20,9.5 C20,10.3284271 19.3284271,11 18.5,11 L14.5,11 C13.6715729,11 13,10.3284271 13,9.5 L13,5.5 C13,4.67157288 13.6715729,4 14.5,4 Z M14.5,13 L18.5,13 C19.3284271,13 20,13.6715729 20,14.5 L20,18.5 C20,19.3284271 19.3284271,20 18.5,20 L14.5,20 C13.6715729,20 13,19.3284271 13,18.5 L13,14.5 C13,13.6715729 13.6715729,13 14.5,13 Z" id="Combined-Shape" fill="#335EEA" opacity="0.3"></path>
</g>
</svg>
</div>
<!-- Content -->
<div class="ml-4">
<!-- Heading -->
<h6 class="font-weight-bold text-uppercase text-primary mb-0">
Components
</h6>
<!-- Text -->
<p class="font-size-sm text-gray-700 mb-0">
Full list of components
</p>
</div>
</a>
<a class="list-group-item" href="./docs/changelog.html">
<!-- Icon -->
<div class="icon icon-sm text-primary">
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
<title>Stockholm-icons / Files / File</title>
<desc>Created with Sketch.</desc>
<g id="Stockholm-icons-/-Files-/-File" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<polygon id="Shape" points="0 0 24 0 24 24 0 24"></polygon>
<path d="M5.85714286,2 L13.7364114,2 C14.0910962,2 14.4343066,2.12568431 14.7051108,2.35473959 L19.4686994,6.3839416 C19.8056532,6.66894833 20,7.08787823 20,7.52920201 L20,20.0833333 C20,21.8738751 19.9795521,22 18.1428571,22 L5.85714286,22 C4.02044787,22 4,21.8738751 4,20.0833333 L4,3.91666667 C4,2.12612489 4.02044787,2 5.85714286,2 Z" id="Combined-Shape" fill="#335EEA" opacity="0.3"></path>
<rect id="Rectangle" fill="#335EEA" x="6" y="11" width="9" height="2" rx="1"></rect>
<rect id="Rectangle-Copy" fill="#335EEA" x="6" y="15" width="5" height="2" rx="1"></rect>
</g>
</svg>
</div>
<!-- Content -->
<div class="ml-4">
<!-- Heading -->
<h6 class="font-weight-bold text-uppercase text-primary mb-0">
Changelog
</h6>
<!-- Text -->
<p class="font-size-sm text-gray-700 mb-0">
Keep track of changes
</p>
</div>
<!-- Badge -->
<span class="badge badge-pill badge-primary-soft ml-auto">
1.1.2
</span>
</a>
</div>
</div>
</li>
</ul>
<!-- Button -->
<a class="navbar-btn btn btn-sm btn-primary lift ml-auto" href="https://themes.getbootstrap.com/product/landkit/" target="_blank">
Buy now
</a>
</div>
</div>
</nav>
<!-- WELCOME
================================================== -->
<section class="pt-4 pt-md-11">
<div class="container">
<div class="row align-items-center">
<div class="col-12 col-md-5 col-lg-6 order-md-2">
<!-- Image -->
<img src="assets/img/illustrations/illustration-2.png" class="img-fluid mw-md-150 mw-lg-130 mb-6 mb-md-0" alt="..." data-aos="fade-up" data-aos-delay="100">
</div>
<div class="col-12 col-md-7 col-lg-6 order-md-1" data-aos="fade-up">
<!-- Heading -->
<h1 class="display-3 text-center text-md-left">
Welcome to <span class="text-primary">Landkit</span>. <br>
Develop anything.
</h1>
<!-- Text -->
<p class="lead text-center text-md-left text-muted mb-6 mb-lg-8">
Build a beautiful, modern website with flexible Bootstrap components built from scratch.
</p>
<!-- Buttons -->
<div class="text-center text-md-left">
<a href="overview.html" class="btn btn-primary shadow lift mr-1">
View all pages <i class="fe fe-arrow-right d-none d-md-inline ml-3"></i>
</a>
<a href="docs/index.html" class="btn btn-primary-soft lift">
Documentation
</a>
</div>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- FEATURES
================================================== -->
<section class="py-8 py-md-11 border-bottom">
<div class="container">
<div class="row">
<div class="col-12 col-md-4" data-aos="fade-up">
<!-- Icon -->
<div class="icon text-primary mb-3">
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
<title>Stockholm-icons / General / Settings-1</title>
<desc>Created with Sketch.</desc>
<g id="Stockholm-icons-/-General-/-Settings-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect id="bound" x="0" y="0" width="24" height="24"></rect>
<path d="M7,3 L17,3 C19.209139,3 21,4.790861 21,7 C21,9.209139 19.209139,11 17,11 L7,11 C4.790861,11 3,9.209139 3,7 C3,4.790861 4.790861,3 7,3 Z M7,9 C8.1045695,9 9,8.1045695 9,7 C9,5.8954305 8.1045695,5 7,5 C5.8954305,5 5,5.8954305 5,7 C5,8.1045695 5.8954305,9 7,9 Z" id="Combined-Shape" fill="#335EEA"></path>
<path d="M7,13 L17,13 C19.209139,13 21,14.790861 21,17 C21,19.209139 19.209139,21 17,21 L7,21 C4.790861,21 3,19.209139 3,17 C3,14.790861 4.790861,13 7,13 Z M17,19 C18.1045695,19 19,18.1045695 19,17 C19,15.8954305 18.1045695,15 17,15 C15.8954305,15 15,15.8954305 15,17 C15,18.1045695 15.8954305,19 17,19 Z" id="Combined-Shape" fill="#335EEA" opacity="0.3"></path>
</g>
</svg>
</div>
<!-- Heading -->
<h3>
Built for developers
</h3>
<!-- Text -->
<p class="text-muted mb-6 mb-md-0">
Landkit is built to make your life easier. Variables, build tooling, documentation, and reusable components.
</p>
</div>
<div class="col-12 col-md-4" data-aos="fade-up" data-aos-delay="50">
<!-- Icon -->
<div class="icon text-primary mb-3">
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
<title>Stockholm-icons / Layout / Layout-arrange</title>
<desc>Created with Sketch.</desc>
<g id="Stockholm-icons-/-Layout-/-Layout-arrange" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect id="bound" x="0" y="0" width="24" height="24"></rect>
<path d="M5.5,4 L9.5,4 C10.3284271,4 11,4.67157288 11,5.5 L11,6.5 C11,7.32842712 10.3284271,8 9.5,8 L5.5,8 C4.67157288,8 4,7.32842712 4,6.5 L4,5.5 C4,4.67157288 4.67157288,4 5.5,4 Z M14.5,16 L18.5,16 C19.3284271,16 20,16.6715729 20,17.5 L20,18.5 C20,19.3284271 19.3284271,20 18.5,20 L14.5,20 C13.6715729,20 13,19.3284271 13,18.5 L13,17.5 C13,16.6715729 13.6715729,16 14.5,16 Z" id="Combined-Shape" fill="#335EEA"></path>
<path d="M5.5,10 L9.5,10 C10.3284271,10 11,10.6715729 11,11.5 L11,18.5 C11,19.3284271 10.3284271,20 9.5,20 L5.5,20 C4.67157288,20 4,19.3284271 4,18.5 L4,11.5 C4,10.6715729 4.67157288,10 5.5,10 Z M14.5,4 L18.5,4 C19.3284271,4 20,4.67157288 20,5.5 L20,12.5 C20,13.3284271 19.3284271,14 18.5,14 L14.5,14 C13.6715729,14 13,13.3284271 13,12.5 L13,5.5 C13,4.67157288 13.6715729,4 14.5,4 Z" id="Combined-Shape" fill="#335EEA" opacity="0.3"></path>
</g>
</svg>
</div>
<!-- Heading -->
<h3>
Designed to be modern
</h3>
<!-- Text -->
<p class="text-muted mb-6 mb-md-0">
Designed with the latest design trends in mind. Landkit feels modern, minimal, and beautiful.
</p>
</div>
<div class="col-12 col-md-4" data-aos="fade-up" data-aos-delay="100">
<!-- Icon -->
<div class="icon text-primary mb-3">
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
<title>Stockholm-icons / Code / Code</title>
<desc>Created with Sketch.</desc>
<g id="Stockholm-icons-/-Code-/-Code" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect id="bound" x="0" y="0" width="24" height="24"></rect>
<path d="M17.2718029,8.68536757 C16.8932864,8.28319382 16.9124644,7.65031935 17.3146382,7.27180288 C17.7168119,6.89328641 18.3496864,6.91246442 18.7282029,7.31463817 L22.7282029,11.5646382 C23.0906029,11.9496882 23.0906029,12.5503176 22.7282029,12.9353676 L18.7282029,17.1853676 C18.3496864,17.5875413 17.7168119,17.6067193 17.3146382,17.2282029 C16.9124644,16.8496864 16.8932864,16.2168119 17.2718029,15.8146382 L20.6267538,12.2500029 L17.2718029,8.68536757 Z M6.72819712,8.6853647 L3.37324625,12.25 L6.72819712,15.8146353 C7.10671359,16.2168091 7.08753558,16.8496835 6.68536183,17.2282 C6.28318808,17.6067165 5.65031361,17.5875384 5.27179713,17.1853647 L1.27179713,12.9353647 C0.909397125,12.5503147 0.909397125,11.9496853 1.27179713,11.5646353 L5.27179713,7.3146353 C5.65031361,6.91246155 6.28318808,6.89328354 6.68536183,7.27180001 C7.08753558,7.65031648 7.10671359,8.28319095 6.72819712,8.6853647 Z" id="Combined-Shape" fill="#335EEA"></path>
<rect id="Rectangle-28" fill="#335EEA" opacity="0.3" transform="translate(12.000000, 12.000000) rotate(-345.000000) translate(-12.000000, -12.000000) " x="11" y="4" width="2" height="16" rx="1"></rect>
</g>
</svg>
</div>
<!-- Heading -->
<h3>
Documentation for everything
</h3>
<!-- Text -->
<p class="text-muted mb-0">
We've written extensive documentation for components and tools, so you never have to reverse engineer anything.