forked from creativetimofficial/notus-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1654 lines (1600 loc) · 81.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
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
<!--
=========================================================
* Notus Tailwind JS - v1.1.0 based on Tailwind Starter Kit by Creative Tim
=========================================================
* Product Page: https://www.creative-tim.com/product/notus-js
* Copyright 2021 Creative Tim (https://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/notus-js/blob/main/LICENSE.md)
* Tailwind Starter Kit Page: https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation
* Coded by Creative Tim
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="shortcut icon" href="./assets/img/favicon.ico" />
<link rel="apple-touch-icon" sizes="76x76" href="./assets/img/apple-icon.png" />
<link rel="stylesheet" href="./assets/vendor/@fortawesome/fontawesome-free/css/all.min.css" />
<link rel="stylesheet" href="./assets/styles/tailwind.css" />
<title>Index | Notus Tailwind JS by Creative Tim</title>
</head>
<body class="text-slate-700 antialiased">
<nav
class="top-0 fixed z-50 w-full flex flex-wrap items-center justify-between px-2 py-3 navbar-expand-lg bg-white shadow">
<div class="container px-4 mx-auto flex flex-wrap items-center justify-between">
<div class="w-full relative flex justify-between lg:w-auto lg:static lg:block lg:justify-start">
<a class="text-slate-700 text-sm font-bold leading-relaxed inline-block mr-4 py-2 whitespace-nowrap uppercase"
href="./index.html">Notus Tailwind JS</a><button
class="cursor-pointer text-xl leading-none px-3 py-1 border border-solid border-transparent rounded bg-transparent block lg:hidden outline-none focus:outline-none"
type="button" onclick="toggleNavbar('example-collapse-navbar')">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="lg:flex flex-grow items-center bg-white lg:bg-opacity-0 lg:shadow-none hidden"
id="example-collapse-navbar">
<ul class="flex flex-col lg:flex-row list-none mr-auto">
<li class="flex items-center">
<a class="hover:text-slate-500 text-slate-700 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="https://www.creative-tim.com/learning-lab/tailwind/js/overview/notus?ref=njs-index"><i
class="text-slate-400 far fa-file-alt text-lg leading-lg mr-2"></i>
Docs</a>
</li>
</ul>
<ul class="flex flex-col lg:flex-row list-none lg:ml-auto items-center">
<li class="inline-block relative">
<a class="hover:text-slate-500 text-slate-700 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="#pablo" onclick="openDropdown(event,'demo-pages-dropdown')">
Demo Pages
</a>
<div
class="hidden bg-white text-base z-50 float-left py-2 list-none text-left rounded shadow-lg min-w-[12rem] navbar-popper"
id="demo-pages-dropdown">
<span
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-nowrap bg-transparent text-slate-400">
Admin Layout
</span>
<a href="./pages/admin/dashboard.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Dashboard
</a>
<a href="./pages/admin/settings.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Settings
</a>
<a href="./pages/admin/tables.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Tables
</a>
<a href="./pages/admin/maps.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Maps
</a>
<div class="h-0 mx-4 my-2 border border-solid border-slate-100"></div>
<span
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-nowrap bg-transparent text-slate-400">
Auth Layout
</span>
<a href="./pages/auth/login.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Login
</a>
<a href="./pages/auth/register.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Register
</a>
<div class="h-0 mx-4 my-2 border border-solid border-slate-100"></div>
<span
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-nowrap bg-transparent text-slate-400">
No Layout
</span>
<a href="./pages/landing.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Landing
</a>
<a href="./pages/profile.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Profile
</a>
</div>
</li>
<li class="flex items-center">
<a class="hover:text-slate-500 text-slate-700 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fdemos.creative-tim.com%2Fnotus-js%2F"
target="_blank"><i class="text-slate-400 fab fa-facebook text-lg leading-lg"></i><span
class="lg:hidden inline-block ml-2">Share</span></a>
</li>
<li class="flex items-center">
<a class="hover:text-slate-500 text-slate-700 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fdemos.creative-tim.com%2Fnotus-js%2F&text=Start%20your%20development%20with%20a%20Free%20Tailwind%20CSS%20and%20JavaScript%20UI%20Kit%20and%20Admin.%20Let%20Notus%20JS%20amaze%20you%20with%20its%20cool%20features%20and%20build%20tools%20and%20get%20your%20project%20to%20a%20whole%20new%20level."
target="_blank"><i class="text-slate-400 fab fa-twitter text-lg leading-lg"></i><span
class="lg:hidden inline-block ml-2">Tweet</span></a>
</li>
<li class="flex items-center">
<a class="hover:text-slate-500 text-slate-700 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="https://github.com/creativetimofficial/notus-js?ref=njs-index" target="_blank"><i
class="text-slate-400 fab fa-github text-lg leading-lg"></i><span
class="lg:hidden inline-block ml-2">Star</span></a>
</li>
<li class="flex items-center">
<button
class="text-white bg-pink-500 active:bg-pink-600 text-xs font-bold uppercase px-4 py-2 rounded shadow hover:shadow-md outline-none focus:outline-none lg:mr-1 lg:mb-0 ml-3 mb-3 ease-linear transition-all duration-150"
type="button">
<i class="fas fa-arrow-alt-circle-down"></i> Download
</button>
</li>
</ul>
</div>
</div>
</nav>
<section class="header relative pt-16 items-center flex h-screen max-h-[860px]">
<div class="container mx-auto items-center flex flex-wrap">
<div class="w-full md:w-8/12 lg:w-6/12 xl:w-6/12 px-4">
<div class="pt-32 sm:pt-0">
<h2 class="font-semibold text-4xl text-slate-600">
Notus Tailwind JS - A beautiful extension for Tailwind CSS.
</h2>
<p class="mt-4 text-lg leading-relaxed text-slate-500">
Notus Tailwind JS is Free and Open Source. It does not change any
of the CSS from
<a href="https://tailwindcss.com/?ref=creativetim" class="text-slate-600" target="_blank">
Tailwind CSS.
</a>
It features multiple HTML elements and it comes with dynamic
components for ReactJS, Vue and Angular.
</p>
<div class="mt-12">
<a href="https://www.creative-tim.com/learning-lab/tailwind/js/overview/notus?ref=njs-index" target="_blank"
class="get-started text-white font-bold px-6 py-4 rounded outline-none focus:outline-none mr-1 mb-1 bg-pink-500 active:bg-pink-600 uppercase text-sm shadow hover:shadow-lg ease-linear transition-all duration-150">
Get started
</a>
<a href="https://github.com/creativetimofficial/notus-js?ref=njs-index"
class="github-star ml-1 text-white font-bold px-6 py-4 rounded outline-none focus:outline-none mr-1 mb-1 bg-slate-700 active:bg-slate-600 uppercase text-sm shadow hover:shadow-lg ease-linear transition-all duration-150"
target="_blank">
Github Star
</a>
</div>
</div>
</div>
</div>
<img class="absolute top-0 b-auto right-0 pt-16 sm:w-6/12 -mt-48 sm:mt-0 w-10/12 max-h-[860px]"
src="./assets/img/ill_header_3.png" alt="..." />
</section>
<section class="mt-48 md:mt-40 pb-40 relative bg-slate-100">
<div class="-mt-20 top-0 bottom-auto left-0 right-0 w-full absolute h-20" style="transform: translateZ(0)">
<svg class="absolute bottom-0 overflow-hidden" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"
version="1.1" viewBox="0 0 2560 100" x="0" y="0">
<polygon class="text-slate-100 fill-current" points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<div class="container mx-auto">
<div class="flex flex-wrap items-center">
<div class="w-10/12 md:w-6/12 lg:w-4/12 px-12 md:px-4 mr-auto ml-auto -mt-32">
<div class="relative flex flex-col min-w-0 break-words w-full mb-6 shadow-lg rounded-lg bg-pink-500">
<img alt="..."
src="https://images.unsplash.com/photo-1498050108023-c5249f4df085?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=700&q=80"
class="w-full align-middle rounded-t-lg" />
<blockquote class="relative p-8 mb-4">
<svg preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 583 95"
class="absolute left-0 w-full block h-[95px] -top-[94px]">
<polygon points="-30,95 583,95 583,65" class="text-pink-500 fill-current"></polygon>
</svg>
<h4 class="text-xl font-bold text-white">
Great for your awesome project
</h4>
<p class="text-md font-light mt-2 text-white">
Putting together a page has never been easier than matching
together pre-made components. From landing pages presentation
to login areas, you can easily customise and built your pages.
</p>
</blockquote>
</div>
</div>
<div class="w-full md:w-6/12 px-4">
<div class="flex flex-wrap">
<div class="w-full md:w-6/12 px-4">
<div class="relative flex flex-col mt-4">
<div class="px-4 py-5 flex-auto">
<div
class="text-slate-500 p-3 text-center inline-flex items-center justify-center w-12 h-12 mb-5 shadow-lg rounded-full bg-white">
<i class="fas fa-sitemap"></i>
</div>
<h6 class="text-xl mb-1 font-semibold">CSS Components</h6>
<p class="mb-4 text-slate-500">
Notus Tailwind JS comes with a huge number of Fully Coded
CSS components.
</p>
</div>
</div>
<div class="relative flex flex-col min-w-0">
<div class="px-4 py-5 flex-auto">
<div
class="text-slate-500 p-3 text-center inline-flex items-center justify-center w-12 h-12 mb-5 shadow-lg rounded-full bg-white">
<i class="fas fa-drafting-compass"></i>
</div>
<h6 class="text-xl mb-1 font-semibold">
JavaScript Components
</h6>
<p class="mb-4 text-slate-500">
We also feature many dynamic components for React, NextJS,
Vue and Angular.
</p>
</div>
</div>
</div>
<div class="w-full md:w-6/12 px-4">
<div class="relative flex flex-col min-w-0 mt-4">
<div class="px-4 py-5 flex-auto">
<div
class="text-slate-500 p-3 text-center inline-flex items-center justify-center w-12 h-12 mb-5 shadow-lg rounded-full bg-white">
<i class="fas fa-newspaper"></i>
</div>
<h6 class="text-xl mb-1 font-semibold">Pages</h6>
<p class="mb-4 text-slate-500">
This extension also comes with 3 sample pages. They are
fully coded so you can start working instantly.
</p>
</div>
</div>
<div class="relative flex flex-col min-w-0">
<div class="px-4 py-5 flex-auto">
<div
class="text-slate-500 p-3 text-center inline-flex items-center justify-center w-12 h-12 mb-5 shadow-lg rounded-full bg-white">
<i class="fas fa-file-alt"></i>
</div>
<h6 class="text-xl mb-1 font-semibold">Documentation</h6>
<p class="mb-4 text-slate-500">
Built by developers for developers. You will love how easy
is to to work with Notus Tailwind JS.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container mx-auto overflow-hidden pb-20">
<div class="flex flex-wrap items-center">
<div class="w-full md:w-4/12 px-12 md:px-4 ml-auto mr-auto mt-48">
<div
class="text-slate-500 p-3 text-center inline-flex items-center justify-center w-16 h-16 mb-6 shadow-lg rounded-full bg-white">
<i class="fas fa-sitemap text-xl"></i>
</div>
<h3 class="text-3xl mb-2 font-semibold leading-normal">
CSS Components
</h3>
<p class="text-lg font-light leading-relaxed mt-4 mb-4 text-slate-600">
Every element that you need in a product comes built in as a
component. All components fit perfectly with each other and can
have different colours.
</p>
<div class="block pb-6">
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Buttons
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Inputs
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Labels
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Menus
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Navbars
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Pagination
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Progressbars
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Typography
</span>
</div>
<a href="https://www.creative-tim.com/learning-lab/tailwind/js/alerts/notus?ref=njs-index" target="_blank"
class="font-bold text-slate-700 hover:text-slate-500 ease-linear transition-all duration-150">
View All
<i class="fa fa-angle-double-right ml-1 leading-relaxed"></i>
</a>
</div>
<div class="w-full md:w-5/12 px-4 mr-auto ml-auto mt-32">
<div class="relative flex flex-col min-w-0 w-full mb-6 mt-48 md:mt-0">
<img alt="..." src="./assets/img/component-btn.png"
class="w-full align-middle rounded absolute shadow-lg max-w-[100px] left-[145px] -top-[29px] z-[3]" />
<img alt="..." src="./assets/img/component-profile-card.png"
class="w-full align-middle rounded-lg absolute shadow-lg max-w-[210px] left-[260px] -top-[160px]" />
<img alt="..." src="./assets/img/component-info-card.png"
class="w-full align-middle rounded-lg absolute shadow-lg max-w-[180px] left-[40px] -top-[225px] z-[2]" />
<img alt="..." src="./assets/img/component-info-2.png"
class="w-full align-middle rounded-lg absolute shadow-2xl max-w-[200px] -left-[50px] top-[25px]" />
<img alt="..." src="./assets/img/component-menu.png"
class="w-full align-middle rounded absolute shadow-lg max-w-[580px] -left-[20px] top-[210px]" />
<img alt="..." src="./assets/img/component-btn-pink.png"
class="w-full align-middle rounded absolute shadow-xl max-w-[120px] left-[195px] top-[95px]" />
</div>
</div>
</div>
<div class="flex flex-wrap items-center pt-32">
<div class="w-full md:w-6/12 px-4 mr-auto ml-auto mt-32">
<div class="justify-center flex flex-wrap relative">
<div class="my-4 w-full lg:w-6/12 px-4">
<a href="https://www.creative-tim.com/learning-lab/tailwind/svelte/alerts/notus?ref=vtw-index"
target="_blank">
<div class="bg-red-600 shadow-lg rounded-lg text-center p-8">
<img alt="..." class="shadow-md rounded-full max-w-full w-16 mx-auto p-2 bg-white"
src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/logos/svelte.jpg" />
<p class="text-lg text-white mt-4 font-semibold">Svelte</p>
</div>
</a>
<a href="https://www.creative-tim.com/learning-lab/tailwind/react/alerts/notus?ref=vtw-index"
target="_blank">
<div class="bg-sky-500 shadow-lg rounded-lg text-center p-8 mt-8">
<img alt="..." class="shadow-md rounded-full max-w-full w-16 mx-auto p-2 bg-white"
src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/logos/react.jpg" />
<p class="text-lg text-white mt-4 font-semibold">ReactJS</p>
</div>
</a>
<a href="https://www.creative-tim.com/learning-lab/tailwind/nextjs/alerts/notus?ref=vtw-index"
target="_blank">
<div class="bg-slate-700 shadow-lg rounded-lg text-center p-8 mt-8">
<img alt="..." class="shadow-md rounded-full max-w-full w-16 mx-auto p-2 bg-white"
src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/logos/nextjs.jpg" />
<p class="text-lg text-white mt-4 font-semibold">NextJS</p>
</div>
</a>
</div>
<div class="my-4 w-full lg:w-6/12 px-4 lg:mt-16">
<a href="https://www.creative-tim.com/learning-lab/tailwind/js/alerts/notus?ref=vtw-index"
target="_blank">
<div class="bg-amber-500 shadow-lg rounded-lg text-center p-8">
<img alt="..." class="shadow-md rounded-full max-w-full w-16 mx-auto p-2 bg-white"
src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/logos/js.png" />
<p class="text-lg text-white mt-4 font-semibold">
JavaScript
</p>
</div>
</a>
<a href="https://www.creative-tim.com/learning-lab/tailwind/angular/alerts/notus?ref=vtw-index"
target="_blank">
<div class="bg-red-700 shadow-lg rounded-lg text-center p-8 mt-8">
<img alt="..." class="shadow-md rounded-full max-w-full w-16 mx-auto p-2 bg-white"
src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/logos/angular.jpg" />
<p class="text-lg text-white mt-4 font-semibold">Angular</p>
</div>
</a>
<a href="https://www.creative-tim.com/learning-lab/tailwind/vue/alerts/notus?ref=vtw-index"
target="_blank">
<div class="bg-emerald-500 shadow-lg rounded-lg text-center p-8 mt-8">
<img alt="..." class="shadow-md rounded-full max-w-full w-16 mx-auto p-2 bg-white"
src="https://raw.githubusercontent.com/creativetimofficial/public-assets/master/logos/vue.jpg" />
<p class="text-lg text-white mt-4 font-semibold">Vue.js</p>
</div>
</a>
</div>
</div>
</div>
<div class="w-full md:w-4/12 px-12 md:px-4 ml-auto mr-auto mt-48">
<div
class="text-slate-500 p-3 text-center inline-flex items-center justify-center w-16 h-16 mb-6 shadow-lg rounded-full bg-white">
<i class="fas fa-drafting-compass text-xl"></i>
</div>
<h3 class="text-3xl mb-2 font-semibold leading-normal">
Javascript Components
</h3>
<p class="text-lg font-light leading-relaxed mt-4 mb-4 text-slate-600">
In order to create a great User Experience some components require
JavaScript. In this way you can manipulate the elements on the
page and give more options to your users.
</p>
<p class="text-lg font-light leading-relaxed mt-4 mb-4 text-slate-600">
We created a set of Components that are dynamic and come to help
you.
</p>
<div class="block pb-6">
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Alerts
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Dropdowns
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Menus
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Modals
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Navbars
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Popovers
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Tabs
</span>
<span
class="text-xs font-semibold inline-block py-1 px-2 rounded-full text-slate-500 bg-white uppercase last:mr-0 mr-2 mt-2">
Tooltips
</span>
</div>
<a href="https://www.creative-tim.com/learning-lab/tailwind/js/alerts/notus?ref=njs-index" target="_blank"
class="font-bold text-slate-700 hover:text-slate-500 ease-linear transition-all duration-150">
View all
<i class="fa fa-angle-double-right ml-1 leading-relaxed"></i>
</a>
</div>
</div>
</div>
<div class="container mx-auto px-4 pb-32 pt-48">
<div class="items-center flex flex-wrap">
<div class="w-full md:w-5/12 ml-auto px-12 md:px-4">
<div class="md:pr-12">
<div
class="text-slate-500 p-3 text-center inline-flex items-center justify-center w-16 h-16 mb-6 shadow-lg rounded-full bg-white">
<i class="fas fa-file-alt text-xl"></i>
</div>
<h3 class="text-3xl font-semibold">Complex Documentation</h3>
<p class="mt-4 text-lg leading-relaxed text-slate-500">
This extension comes a lot of fully coded examples that help you
get started faster. You can adjust the colors and also the
programming language. You can change the text and images and
you're good to go.
</p>
<ul class="list-none mt-6">
<li class="py-2">
<div class="flex items-center">
<div>
<span
class="text-xs font-semibold inline-block py-1 px-2 uppercase rounded-full text-slate-500 bg-slate-50 mr-3">
<i class="fas fa-fingerprint"></i>
</span>
</div>
<div>
<h4 class="text-slate-500">
Built by Developers for Developers
</h4>
</div>
</div>
</li>
<li class="py-2">
<div class="flex items-center">
<div>
<span
class="text-xs font-semibold inline-block py-1 px-2 uppercase rounded-full text-slate-500 bg-slate-50 mr-3">
<i class="fab fa-html5"></i>
</span>
</div>
<div>
<h4 class="text-slate-500">
Carefully crafted code for Components
</h4>
</div>
</div>
</li>
<li class="py-2">
<div class="flex items-center">
<div>
<span
class="text-xs font-semibold inline-block py-1 px-2 uppercase rounded-full text-slate-500 bg-slate-50 mr-3">
<i class="far fa-paper-plane"></i>
</span>
</div>
<div>
<h4 class="text-slate-500">
Dynamic Javascript Components
</h4>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="w-full md:w-6/12 mr-auto px-4 pt-24 md:pt-0">
<img alt="..." class="max-w-full rounded-lg shadow-xl" style="
transform: scale(1) perspective(1040px) rotateY(-11deg)
rotateX(2deg) rotate(2deg);
" src="./assets/img/documentation.png" />
</div>
</div>
</div>
<div class="justify-center text-center flex flex-wrap mt-24">
<div class="w-full md:w-6/12 px-12 md:px-4">
<h2 class="font-semibold text-4xl">Beautiful Example Pages</h2>
<p class="text-lg leading-relaxed mt-4 mb-4 text-slate-500">
Notus Tailwind JS is a completly new product built using our past
experience in web templates. Take the examples we made for you and
start playing with them.
</p>
</div>
</div>
</section>
<section class="block relative z-1 bg-slate-600">
<div class="container mx-auto">
<div class="justify-center flex flex-wrap">
<div class="w-full lg:w-12/12 px-4 -mt-24">
<div class="flex flex-wrap">
<div class="w-full lg:w-4/12 px-4">
<h5 class="text-xl font-semibold pb-4 text-center">
Login Page
</h5>
<a href="./pages/auth/login.html">
<div
class="hover:-mt-4 relative flex flex-col min-w-0 break-words bg-white w-full mb-6 shadow-lg rounded-lg ease-linear transition-all duration-150">
<img alt="..." class="align-middle border-none max-w-full h-auto rounded-lg"
src="./assets/img/login.jpg" />
</div>
</a>
</div>
<div class="w-full lg:w-4/12 px-4">
<h5 class="text-xl font-semibold pb-4 text-center">
Profile Page
</h5>
<a href="./pages/profile.html">
<div
class="hover:-mt-4 relative flex flex-col min-w-0 break-words bg-white w-full mb-6 shadow-lg rounded-lg ease-linear transition-all duration-150">
<img alt="..." class="align-middle border-none max-w-full h-auto rounded-lg"
src="./assets/img/profile.jpg" />
</div>
</a>
</div>
<div class="w-full lg:w-4/12 px-4">
<h5 class="text-xl font-semibold pb-4 text-center">
Landing Page
</h5>
<a href="./pages/landing.html">
<div
class="hover:-mt-4 relative flex flex-col min-w-0 break-words bg-white w-full mb-6 shadow-lg rounded-lg ease-linear transition-all duration-150">
<img alt="..." class="align-middle border-none max-w-full h-auto rounded-lg"
src="./assets/img/landing.jpg" />
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="py-20 bg-slate-600 overflow-hidden">
<div class="container mx-auto pb-64">
<div class="flex flex-wrap justify-center">
<div class="w-full md:w-5/12 px-12 md:px-4 ml-auto mr-auto md:mt-64">
<div
class="text-slate-500 p-3 text-center inline-flex items-center justify-center w-16 h-16 mb-6 shadow-lg rounded-full bg-white">
<i class="fas fa-code-branch text-xl"></i>
</div>
<h3 class="text-3xl mb-2 font-semibold leading-normal text-white">
Open Source
</h3>
<p class="text-lg font-light leading-relaxed mt-4 mb-4 text-slate-400">
Since
<a href="https://tailwindcss.com/?ref=creativetim" class="text-slate-300" target="_blank">
Tailwind CSS
</a>
is an open source project we wanted to continue this movement too.
You can give this version a try to feel the design and also test
the quality of the code!
</p>
<p class="text-lg font-light leading-relaxed mt-0 mb-4 text-slate-400">
Get it free on Github and please help us spread the news with a
Star!
</p>
<a href="https://github.com/creativetimofficial/notus-js?ref=njs-index" target="_blank"
class="github-star mt-4 inline-block text-white font-bold px-6 py-4 rounded outline-none focus:outline-none mr-1 mb-1 bg-slate-700 active:bg-slate-600 uppercase text-sm shadow hover:shadow-lg ease-linear transition-all duration-150">
Github Star
</a>
</div>
<div class="w-full md:w-4/12 px-4 mr-auto ml-auto mt-32 relative">
<i
class="fab fa-github text-slate-700 text-[55rem] absolute -top-[150px] -right-[100%] left-auto opacity-[.8]"></i>
</div>
</div>
</div>
</section>
<section class="pb-16 bg-slate-200 relative pt-32">
<div class="-mt-20 top-0 bottom-auto left-0 right-0 w-full absolute h-20" style="transform: translateZ(0)">
<svg class="absolute bottom-0 overflow-hidden" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"
version="1.1" viewBox="0 0 2560 100" x="0" y="0">
<polygon class="text-slate-200 fill-current" points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<div class="container mx-auto">
<div class="flex flex-wrap justify-center bg-white shadow-xl rounded-lg -mt-64 py-16 px-12 relative z-10">
<div class="w-full text-center lg:w-8/12">
<p class="text-4xl text-center">
<span role="img" aria-label="love"> 😍 </span>
</p>
<h3 class="font-semibold text-3xl">
Do you love this Starter Kit?
</h3>
<p class="text-slate-500 text-lg leading-relaxed mt-4 mb-4">
Cause if you do, it can be yours now. Hit the buttons below to
navigate to get the Free version for your next project. Build a
new web app or give an old project a new look!
</p>
<div class="sm:block flex flex-col mt-10">
<a href="https://www.creative-tim.com/learning-lab/tailwind/js/overview/notus?ref=njs-index" target="_blank"
class="get-started text-white font-bold px-6 py-4 rounded outline-none focus:outline-none mr-1 mb-2 bg-pink-500 active:bg-pink-600 uppercase text-sm shadow hover:shadow-lg ease-linear transition-all duration-150">
Get started
</a>
<a href="https://github.com/creativetimofficial/notus-js?ref=njs-index" target="_blank"
class="github-star sm:ml-1 text-white font-bold px-6 py-4 rounded outline-none focus:outline-none mr-1 mb-1 bg-slate-700 active:bg-slate-600 uppercase text-sm shadow hover:shadow-lg ease-linear transition-all duration-150">
<i class="fab fa-github text-lg mr-1"></i>
<span>Help With a Star</span>
</a>
</div>
<div class="text-center mt-16"></div>
</div>
</div>
</div>
</section>
<footer class="relative bg-slate-200 pt-8 pb-6">
<div class="bottom-auto top-0 left-0 right-0 w-full absolute pointer-events-none overflow-hidden -mt-20 h-20"
style="transform: translateZ(0)">
<svg class="absolute bottom-0 overflow-hidden" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"
version="1.1" viewBox="0 0 2560 100" x="0" y="0">
<polygon class="text-slate-200 fill-current" points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<div class="container mx-auto px-4">
<div class="flex flex-wrap text-center lg:text-left">
<div class="w-full lg:w-6/12 px-4">
<h4 class="text-3xl font-semibold">Let's keep in touch!</h4>
<h5 class="text-lg mt-0 mb-2 text-slate-600">
Find us on any of these platforms, we respond 1-2 business days.
</h5>
<div class="mt-6 lg:mb-0 mb-6">
<button
class="bg-white text-sky-400 shadow-lg font-normal h-10 w-10 items-center justify-center align-center rounded-full outline-none focus:outline-none mr-2"
type="button">
<i class="fab fa-twitter"></i>
</button>
<button
class="bg-white text-sky-600 shadow-lg font-normal h-10 w-10 items-center justify-center align-center rounded-full outline-none focus:outline-none mr-2"
type="button">
<i class="fab fa-facebook-square"></i>
</button>
<button
class="bg-white text-pink-400 shadow-lg font-normal h-10 w-10 items-center justify-center align-center rounded-full outline-none focus:outline-none mr-2"
type="button">
<i class="fab fa-dribbble"></i>
</button>
<button
class="bg-white text-slate-800 shadow-lg font-normal h-10 w-10 items-center justify-center align-center rounded-full outline-none focus:outline-none mr-2"
type="button">
<i class="fab fa-github"></i>
</button>
</div>
</div>
<div class="w-full lg:w-6/12 px-4">
<div class="flex flex-wrap items-top mb-6">
<div class="w-full lg:w-4/12 px-4 ml-auto">
<span class="block uppercase text-slate-500 text-sm font-semibold mb-2">
Useful Links
</span>
<ul class="list-unstyled">
<li>
<a class="text-slate-600 hover:text-slate-800 font-semibold block pb-2 text-sm"
href="https://www.creative-tim.com/presentation?ref=njs-index">
About Us
</a>
</li>
<li>
<a class="text-slate-600 hover:text-slate-800 font-semibold block pb-2 text-sm"
href="https://blog.creative-tim.com?ref=njs-index">
Blog
</a>
</li>
<li>
<a class="text-slate-600 hover:text-slate-800 font-semibold block pb-2 text-sm"
href="https://www.github.com/creativetimofficial?ref=njs-index">
Github
</a>
</li>
<li>
<a class="text-slate-600 hover:text-slate-800 font-semibold block pb-2 text-sm"
href="https://www.creative-tim.com/bootstrap-themes/free?ref=njs-index">
Free Products
</a>
</li>
</ul>
</div>
<div class="w-full lg:w-4/12 px-4">
<span class="block uppercase text-slate-500 text-sm font-semibold mb-2">
Other Resources
</span>
<ul class="list-unstyled">
<li>
<a class="text-slate-600 hover:text-slate-800 font-semibold block pb-2 text-sm"
href="https://github.com/creativetimofficial/notus-js/blob/main/LICENSE.md?ref=njs-index">
MIT License
</a>
</li>
<li>
<a class="text-slate-600 hover:text-slate-800 font-semibold block pb-2 text-sm"
href="https://creative-tim.com/terms?ref=njs-index">
Terms & Conditions
</a>
</li>
<li>
<a class="text-slate-600 hover:text-slate-800 font-semibold block pb-2 text-sm"
href="https://creative-tim.com/privacy?ref=njs-index">
Privacy Policy
</a>
</li>
<li>
<a class="text-slate-600 hover:text-slate-800 font-semibold block pb-2 text-sm"
href="https://creative-tim.com/contact-us?ref=njs-index">
Contact Us
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<hr class="my-6 border-slate-300" />
<div class="flex flex-wrap items-center md:justify-between justify-center">
<div class="w-full md:w-4/12 px-4 mx-auto text-center">
<div class="text-sm text-slate-500 font-semibold py-1">
Copyright © <span id="get-current-year"></span> Notus Tailwind JS
by
<a href="https://www.creative-tim.com?ref=njs-index" class="text-slate-500 hover:text-slate-800">
Creative Tim
</a>
.
</div>
</div>
</div>
</div>
</footer>
</body>
<script src="https://unpkg.com/@popperjs/core@2/dist/umd/popper.js"></script>
<script>
/* Make dynamic date appear */
(function () {
if (document.getElementById("get-current-year")) {
document.getElementById("get-current-year").innerHTML =
new Date().getFullYear();
}
})();
/* Function for opning navbar on mobile */
function toggleNavbar(collapseID) {
document.getElementById(collapseID).classList.toggle("hidden");
document.getElementById(collapseID).classList.toggle("block");
}
/* Function for dropdowns */
function openDropdown(event, dropdownID) {
let element = event.target;
while (element.nodeName !== "A") {
element = element.parentNode;
}
Popper.createPopper(element, document.getElementById(dropdownID), {
placement: "bottom-start"
});
document.getElementById(dropdownID).classList.toggle("hidden");
document.getElementById(dropdownID).classList.toggle("block");
}
</script>
</html>
<!--
=========================================================
* Notus Tailwind JS - v1.1.0 based on Tailwind Starter Kit by Creative Tim
=========================================================
* Product Page: https://www.creative-tim.com/product/notus-js
* Copyright 2021 Creative Tim (https://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/notus-js/blob/main/LICENSE.md)
* Tailwind Starter Kit Page: https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation
* Coded by Creative Tim
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="shortcut icon" href="./assets/img/favicon.ico" />
<link rel="apple-touch-icon" sizes="76x76" href="./assets/img/apple-icon.png" />
<link rel="stylesheet" href="./assets/vendor/@fortawesome/fontawesome-free/css/all.min.css" />
<link rel="stylesheet" href="./assets/styles/tailwind.css" />
<title>Index | Notus Tailwind JS by Creative Tim</title>
</head>
<body class="text-slate-700 antialiased">
<nav
class="top-0 fixed z-50 w-full flex flex-wrap items-center justify-between px-2 py-3 navbar-expand-lg bg-white shadow">
<div class="container px-4 mx-auto flex flex-wrap items-center justify-between">
<div class="w-full relative flex justify-between lg:w-auto lg:static lg:block lg:justify-start">
<a class="text-slate-700 text-sm font-bold leading-relaxed inline-block mr-4 py-2 whitespace-nowrap uppercase"
href="./index.html">Notus Tailwind JS</a><button
class="cursor-pointer text-xl leading-none px-3 py-1 border border-solid border-transparent rounded bg-transparent block lg:hidden outline-none focus:outline-none"
type="button" onclick="toggleNavbar('example-collapse-navbar')">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="lg:flex flex-grow items-center bg-white lg:bg-opacity-0 lg:shadow-none hidden"
id="example-collapse-navbar">
<ul class="flex flex-col lg:flex-row list-none mr-auto">
<li class="flex items-center">
<a class="hover:text-slate-500 text-slate-700 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="https://www.creative-tim.com/learning-lab/tailwind/js/overview/notus?ref=njs-index"><i
class="text-slate-400 far fa-file-alt text-lg leading-lg mr-2"></i>
Docs</a>
</li>
</ul>
<ul class="flex flex-col lg:flex-row list-none lg:ml-auto items-center">
<li class="inline-block relative">
<a class="hover:text-slate-500 text-slate-700 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="#pablo" onclick="openDropdown(event,'demo-pages-dropdown')">
Demo Pages
</a>
<div
class="hidden bg-white text-base z-50 float-left py-2 list-none text-left rounded shadow-lg min-w-[12rem] navbar-popper"
id="demo-pages-dropdown">
<span
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-nowrap bg-transparent text-slate-400">
Admin Layout
</span>
<a href="./pages/admin/dashboard.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Dashboard
</a>
<a href="./pages/admin/settings.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Settings
</a>
<a href="./pages/admin/tables.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Tables
</a>
<a href="./pages/admin/maps.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Maps
</a>
<div class="h-0 mx-4 my-2 border border-solid border-slate-100"></div>
<span
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-nowrap bg-transparent text-slate-400">
Auth Layout
</span>
<a href="./pages/auth/login.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Login
</a>
<a href="./pages/auth/register.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Register
</a>
<div class="h-0 mx-4 my-2 border border-solid border-slate-100"></div>
<span
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-nowrap bg-transparent text-slate-400">
No Layout
</span>
<a href="./pages/landing.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Landing
</a>
<a href="./pages/profile.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-slate-700">
Profile
</a>
</div>
</li>
<li class="flex items-center">
<a class="hover:text-slate-500 text-slate-700 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fdemos.creative-tim.com%2Fnotus-js%2F"
target="_blank"><i class="text-slate-400 fab fa-facebook text-lg leading-lg"></i><span
class="lg:hidden inline-block ml-2">Share</span></a>
</li>
<li class="flex items-center">
<a class="hover:text-slate-500 text-slate-700 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fdemos.creative-tim.com%2Fnotus-js%2F&text=Start%20your%20development%20with%20a%20Free%20Tailwind%20CSS%20and%20JavaScript%20UI%20Kit%20and%20Admin.%20Let%20Notus%20JS%20amaze%20you%20with%20its%20cool%20features%20and%20build%20tools%20and%20get%20your%20project%20to%20a%20whole%20new%20level."
target="_blank"><i class="text-slate-400 fab fa-twitter text-lg leading-lg"></i><span
class="lg:hidden inline-block ml-2">Tweet</span></a>
</li>
<li class="flex items-center">
<a class="hover:text-slate-500 text-slate-700 px-3 py-4 lg:py-2 flex items-center text-xs uppercase font-bold"
href="https://github.com/creativetimofficial/notus-js?ref=njs-index" target="_blank"><i
class="text-slate-400 fab fa-github text-lg leading-lg"></i><span
class="lg:hidden inline-block ml-2">Star</span></a>
</li>
<li class="flex items-center">
<button
class="text-white bg-pink-500 active:bg-pink-600 text-xs font-bold uppercase px-4 py-2 rounded shadow hover:shadow-md outline-none focus:outline-none lg:mr-1 lg:mb-0 ml-3 mb-3 ease-linear transition-all duration-150"
type="button">
<i class="fas fa-arrow-alt-circle-down"></i> Download
</button>
</li>
</ul>
</div>
</div>
</nav>
<section class="header relative pt-16 items-center flex h-screen max-h-[860px]">
<div class="container mx-auto items-center flex flex-wrap">
<div class="w-full md:w-8/12 lg:w-6/12 xl:w-6/12 px-4">
<div class="pt-32 sm:pt-0">
<h2 class="font-semibold text-4xl text-slate-600">
Notus Tailwind JS - A beautiful extension for Tailwind CSS.
</h2>
<p class="mt-4 text-lg leading-relaxed text-slate-500">
Notus Tailwind JS is Free and Open Source. It does not change any
of the CSS from
<a href="https://tailwindcss.com/?ref=creativetim" class="text-slate-600" target="_blank">
Tailwind CSS.
</a>
It features multiple HTML elements and it comes with dynamic
components for ReactJS, Vue and Angular.
</p>
<div class="mt-12">
<a href="https://www.creative-tim.com/learning-lab/tailwind/js/overview/notus?ref=njs-index" target="_blank"
class="get-started text-white font-bold px-6 py-4 rounded outline-none focus:outline-none mr-1 mb-1 bg-pink-500 active:bg-pink-600 uppercase text-sm shadow hover:shadow-lg ease-linear transition-all duration-150">
Get started
</a>
<a href="https://github.com/creativetimofficial/notus-js?ref=njs-index"
class="github-star ml-1 text-white font-bold px-6 py-4 rounded outline-none focus:outline-none mr-1 mb-1 bg-slate-700 active:bg-slate-600 uppercase text-sm shadow hover:shadow-lg ease-linear transition-all duration-150"
target="_blank">
Github Star
</a>
</div>
</div>
</div>
</div>
<img class="absolute top-0 b-auto right-0 pt-16 sm:w-6/12 -mt-48 sm:mt-0 w-10/12 max-h-[860px]"