forked from undercode99/jakarta-lte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
862 lines (840 loc) · 34.3 KB
/
card.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Jakarta LTE - Free and Open Source Premium Admin Templates with rich UI
Kit base on Tailwind CSS
</title>
<!-- Tailwind css -->
<link rel="stylesheet" href="./../dist/css/tailwind.min.css" />
<!-- Box icon -->
<link
rel="stylesheet"
href="./../dist/libs/boxicons/css/boxicons.min.css"
/>
<!-- Jquery plugin js -->
<script src="./../dist/libs/jquery/jquery.slim.min.js"></script>
<!-- Apex chart plugins js -->
<script src="./../dist/libs/apexcharts/apexcharts.min.js"></script>
<!-- Core js -->
<script src="./../dist/js/jakarta-lte.min.js"></script>
</head>
<body class="bg-gray-100">
<!-- Navbar -->
<nav class="bg-white border-b border-gray-300">
<div
class="flex items-center justify-between flex-wrap mx-auto max-w-screen-xl"
>
<div class="flex items-center mx-2 py-3 md:py-0">
<div class="flex items-center">
<button class="md:hidden mx-3">
<i class="text-2xl bx bx-menu"></i>
</button>
<a href="#" class="font-bold text-xl pr-6"
>Jakarta<span class="text-gray-500 font-normal">LTE</span></a
>
</div>
<ul class="text-sm font-normal hidden md:flex">
<li
class="mx-3 py-4 font-medium text-green-500 border-b-2 border-green-500"
>
<a href="#" class="inline-flex items-center">
<i class="bx bx-home mr-1"></i>
Home
</a>
</li>
<li
class="mx-3 py-4 text-gray-600 hover:text-gray-900 inline-block relative text-left"
>
<a
href="#"
class="inline-flex text-sm items-center text-gray-600 dropdown-toggle"
data-dropdown="dropdownMenuDashboard"
>
<i class="bx bx-pie-chart-alt mr-1"></i>
<span>Dashboard</span>
<i class="bx bx-chevron-down ml-1"></i>
</a>
<div
class="origin-top-right absolute right-0 mt-3 z-10 w-40 rounded-md shadow-lg hidden"
id="dropdownMenuDashboard"
>
<div
class="rounded-md bg-white shadow-xs"
role="menu"
aria-orientation="vertical"
aria-labelledby="options-menu"
>
<div class="py-1">
<a
href="./../index.html"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Dashboard v1</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Dashboard v2</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Dashboard v3</a
>
</div>
</div>
</div>
</li>
<li
class="mx-3 py-4 text-gray-600 hover:text-gray-900 relative inline-block text-left"
>
<a
href="#"
class="inline-flex items-center dropdown-toggle"
data-dropdown="uiComponentMenu"
>
<i class="bx bx-outline mr-1"></i>
<span>UI Component</span>
<i class="bx bx-chevron-down ml-1"></i>
</a>
<div
class="origin-top-right absolute right-0 mt-3 z-10 w-40 rounded-md shadow-lg hidden"
id="uiComponentMenu"
>
<div
class="rounded-md bg-white shadow-xs"
role="menu"
aria-orientation="vertical"
aria-labelledby="options-menu"
>
<div class="py-1">
<a
href="./form.html"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Form</a
>
<a
href="./card.html"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Card</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Chart</a
>
<a
href="./button.html"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Buttons</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Dropdown</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Navbar</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Maps</a
>
</div>
</div>
</div>
</li>
<li
class="mx-3 py-4 text-gray-600 hover:text-gray-900 relative inline-block text-left"
>
<a
href="#"
class="inline-flex items-center dropdown-toggle"
data-dropdown="pagesNav"
>
<i class="bx bx-book mr-1"></i>
<span>Pages</span>
<i class="bx bx-chevron-down ml-1"></i>
</a>
<div
class="origin-top-right absolute right-0 mt-3 z-10 w-40 rounded-md shadow-lg hidden"
id="pagesNav"
>
<div
class="rounded-md bg-white shadow-xs"
role="menu"
aria-orientation="vertical"
aria-labelledby="options-menu"
>
<div class="py-1">
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Login</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Register</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>User Profile</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>User Settings</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Blog</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Timeline</a
>
</div>
</div>
</div>
</li>
<li
class="mx-3 py-4 text-gray-600 hover:text-gray-900 relative inline-block text-left"
>
<a
href="#"
class="inline-flex items-center dropdown-toggle"
data-dropdown="layoutNav"
><i class="bx bx-dock-right mr-1"></i>
<span> Layout</span>
<i class="bx bx-chevron-down ml-1"></i
></a>
<div
class="origin-top-right absolute right-0 mt-3 z-10 w-40 rounded-md shadow-lg hidden"
id="layoutNav"
>
<div
class="rounded-md bg-white shadow-xs"
role="menu"
aria-orientation="vertical"
aria-labelledby="options-menu"
>
<div class="py-1">
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Vertical</a
>
<a
href="#"
class="block px-3 py-2 text-sm leading-5 text-gray-600 hover:bg-gray-200 hover:text-gray-700 focus:outline-none focus:bg-gray-100 focus:text-gray-700"
>Vertical fluid</a
>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="flex items-center">
<button class="mt-1 relative mx-2">
<i class="bx bx-bell text-xl text-gray-600"></i>
<span
aria-hidden="true"
class="absolute top-0 right-0 inline-block w-3 h-3 transform translate-x-1 -translate-y-1 bg-red-600 border-2 border-white rounded-full dark:border-gray-800"
></span>
</button>
<div class="inline-block relative text-left">
<a
class="flex items-center mx-2 dropdown-toggle"
href=""
data-dropdown="dropDownMenu"
>
<img
class="w-8 h-8 mr-3 rounded-full object-cover"
src="./../dist/avatar/nis.png"
alt="Avatar"
/>
<div class="mt-1 hidden md:block">
<div class="leading-3 text-sm text-gray-700">
Zero Black Coder
</div>
<small class="text-xs text-gray-500">Anggota DPR</small>
</div>
</a>
<div
class="origin-top-right absolute right-0 mt-3 z-56 w-56 rounded-md shadow-lg hidden"
id="dropDownMenu"
>
<div
class="rounded-md bg-white shadow-xs"
role="menu"
aria-orientation="vertical"
aria-labelledby="options-menu"
>
<div class="py-1">
<a
href="#"
class="block px-4 py-2 text-sm leading-5 text-gray-700 hover:bg-gray-100 hover:text-gray-900 focus:outline-none focus:bg-gray-100 focus:text-gray-900"
role="menuitem"
>Settings</a
>
<a
href="#"
class="block px-4 py-2 text-sm leading-5 text-gray-700 hover:bg-gray-100 hover:text-gray-900 focus:outline-none focus:bg-gray-100 focus:text-gray-900"
role="menuitem"
>Logout</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<!-- End navbar -->
<!-- Wrapper -->
<div class="max-w-screen-xl mx-auto">
<!-- Title -->
<div class="mt-4 mx-4 md:flex justify-between items-center">
<div class="">
<h3 class="text-gray-600 text-sm">
<a href="" class="text-green-600">
<i class="bx bx-home mr-1"></i>
Home
</a>
/
<a href="" class="text-green-600"> Component </a> / Card
</h3>
</div>
</div>
<!-- End title -->
<!-- Content -->
<div>
<!-- Title -->
<div class="mx-4 my-2">
<h1 class="text-2xl mt-1 font-medium">Blog</h1>
<span class="text-base text-gray-600">Card Blog Style</span>
</div>
<!-- End title -->
<div class="flex flex-wrap">
<div class="md:w-1/3">
<div class="bg-white border rounded m-4">
<a href="">
<img
class="rounded-t h-48 w-full object-cover"
src="./../dist/images/2.jpg"
alt=""
/>
</a>
<div class="m-4">
<div>
<a href="" class="font-bold text-gray-700 text-xl">
I suck at programming, but I love it. What should I do?
</a>
</div>
<div class="my-4">
<p class="text-gray-600 my-2">
At level zero you know nothing, however when you learn a
thing or two basic things about programming, you now get to
level 1 ...
</p>
</div>
<div class="mt-6">
<div class="flex justify-between items-center">
<a class="flex justify-between items-center" href="">
<img
class="w-10 h-10 rounded-full object-cover"
src="./../dist/avatar/nis.png"
alt="Avatar"
/>
<div class="ml-3">
<p class="text-gray-700 text-sm block leading-none">
Zero Black Coder
</p>
<small class="text-xs text-gray-600"
>16 Jul 2020 - 3 Minutes read</small
>
</div>
</a>
<div>
<button
class="text-gray-700 hover:text-gray-600 focus:outline-none focus:shadow-outline-blue active:text-gray-700 transition duration-150 ease-in-out m-1 inline-flex items-center"
>
<i class="bx bx-bookmark text-xl"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md:w-1/3">
<div class="bg-white border rounded m-4">
<a href="">
<img
class="h-48 w-full rounded-t object-cover"
src="./../dist/images/3.jpg"
alt=""
/>
</a>
<div class="m-4">
<div class="my-4">
<div class="flex justify-between items-center">
<a class="flex justify-between items-center" href="">
<img
class="w-10 h-10 rounded-full object-cover"
src="./../dist/avatar/nis.png"
alt="Avatar"
/>
<div class="ml-3">
<p class="text-gray-700 text-sm block leading-none">
Mariana Azevedo
</p>
<small class="text-xs text-gray-600"
>Today - 3 Minutes read</small
>
</div>
</a>
<div>
<button
class="text-gray-700 hover:text-gray-600 focus:outline-none focus:shadow-outline-blue active:text-gray-700 transition duration-150 ease-in-out m-1 inline-flex items-center"
>
<i class="bx bx-bookmark text-xl"></i>
</button>
</div>
</div>
</div>
<div class="my-4">
<a href="" class="font-bold text-gray-700 text-xl">
S.O.L.I.D principles: what are they and why projects should
use them
</a>
</div>
<div class="my-4">
<p class="text-gray-600 my-2">
At level zero you know nothing, however when you learn a
thing or two basic things about programming, you now get to
level 1 ...
</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/3">
<div class="bg-white border rounded m-4">
<div class="m-4">
<div class="flex justify-between items-center">
<a class="flex justify-between items-center" href="">
<img
class="w-10 h-10 rounded-full object-cover"
src="./../dist/avatar/nis.png"
alt="Avatar"
/>
<div class="ml-3">
<p class="text-gray-700 text-sm block leading-none">
Mariana Azevedo
</p>
<small class="text-xs text-gray-600"
>Today - 3 Minutes read</small
>
</div>
</a>
<div>
<button
class="text-gray-700 hover:text-gray-600 focus:outline-none focus:shadow-outline-blue active:text-gray-700 transition duration-150 ease-in-out m-1 inline-flex items-center"
>
<i class="bx bx-bookmark text-xl"></i>
</button>
</div>
</div>
</div>
<a href="">
<img
class="h-48 w-full object-cover"
src="./../dist/images/4.jpg"
alt=""
/>
</a>
<div class="m-4">
<div>
<a href="" class="font-bold text-gray-700 text-xl">
S.O.L.I.D principles: what are they and why projects should
use them
</a>
</div>
<div class="my-4">
<p class="text-gray-600 my-2">
At level zero you know nothing, however when you learn a
thing or two basic things about programming, you now get to
level 1 ...
</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/3">
<div class="bg-white border rounded m-4">
<div class="m-4">
<div>
<a href="" class="font-bold text-gray-700 text-xl">
S.O.L.I.D principles: what are they and why projects should
use them
</a>
</div>
<div class="my-4">
<p class="text-gray-600 my-2">
At level zero you know nothing, however when you learn a
thing or two basic things about programming, you now get to
level 1 ...
</p>
</div>
<div>
<div class="flex justify-between items-center">
<a class="flex justify-between items-center" href="">
<img
class="w-10 h-10 rounded-full object-cover"
src="./../dist/avatar/nis.png"
alt="Avatar"
/>
<div class="ml-3">
<p class="text-gray-700 text-sm block leading-none">
Mariana Azevedo
</p>
<small class="text-xs text-gray-600"
>Today - 3 Minutes read</small
>
</div>
</a>
<div>
<button
class="text-gray-700 hover:text-gray-600 focus:outline-none focus:shadow-outline-blue active:text-gray-700 transition duration-150 ease-in-out m-1 inline-flex items-center"
>
<i class="bx bx-bookmark text-xl"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md:w-1/3">
<div class="bg-white border rounded m-4">
<div class="m-4">
<div>
<a href="" class="font-bold text-gray-700 text-xl"
>Talk is cheap. Show me the code - Linus Torvalds
</a>
</div>
<div class="my-4">
<p class="text-gray-600 my-2">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Illo, ex autem? Nisi minus porro pariatur quaerat officia
asperiores officiis...
</p>
</div>
<div>
<div class="flex justify-between items-center">
<a class="flex justify-between items-center" href="">
<img
class="w-10 h-10 rounded-full object-cover"
src="./../dist/avatar/nis.png"
alt="Avatar"
/>
<div class="ml-3">
<p class="text-gray-700 text-sm block leading-none">
Mariana Azevedo
</p>
<small class="text-xs text-gray-600"
>Today - 3 Minutes read</small
>
</div>
</a>
<div>
<button
class="text-gray-700 hover:text-gray-600 focus:outline-none focus:shadow-outline-blue active:text-gray-700 transition duration-150 ease-in-out m-1 inline-flex items-center"
>
<i class="bx bx-bookmark text-xl"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="md:w-1/3">
<div class="bg-white border rounded m-4">
<div class="m-4">
<div>
<a href="" class="font-bold text-gray-700 text-xl">
I suck at programming, but I love it. What should I do?
</a>
</div>
<div class="my-4">
<p class="text-gray-600 my-2">
At level zero you know nothing, however when you learn a
thing or two basic things about programming, you now get to
level 1 ...
</p>
</div>
<div>
<div class="flex justify-between items-center">
<a class="flex justify-between items-center" href="">
<img
class="w-10 h-10 rounded-full object-cover"
src="./../dist/avatar/nis.png"
alt="Avatar"
/>
<div class="ml-3">
<p class="text-gray-700 text-sm block leading-none">
Mariana Azevedo
</p>
<small class="text-xs text-gray-600"
>Today - 3 Minutes read</small
>
</div>
</a>
<div>
<button
class="text-gray-700 hover:text-gray-600 focus:outline-none focus:shadow-outline-blue active:text-gray-700 transition duration-150 ease-in-out m-1 inline-flex items-center"
>
<i class="bx bx-bookmark text-xl"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Content -->
<!-- Content -->
<div>
<!-- Title -->
<div class="mx-4 my-2">
<h1 class="text-2xl mt-1 font-medium">Profile</h1>
<span class="text-base text-gray-600">Card Blog Style</span>
</div>
<!-- End Title -->
<div class="flex flex-wrap">
<div class="md:w-1/4">
<div class="bg-white border rounded m-4">
<div class="py-8 px-4">
<a href="">
<img
class="rounded-full mx-auto h-24 w-24 object-cover"
src="./../dist/avatar/nis.png"
alt=""
/>
</a>
<div class="py-4 text-center text-xl">
<h1 class="leading-3 font-medium text-xl">
Zero Black Coder
</h1>
<span class="text-sm text-gray-700 font-normal leading-3"
>[email protected]</span
>
<p class="text-sm text-gray-600 leading-5 mt-3">
Zero Black Coder is an Member of DPR living in planet namek,
i love to play with hooman
</p>
</div>
<div class="px-8 pb-4 pt-2 flex justify-between items-center">
<div>
<div class="text-center text-xl font-base text-gray-500">
<i class="bx bx-camera"></i>
</div>
<div
class="text-center text-xl font-medium text-gray-700 leading-none"
>
126
</div>
</div>
<div>
<div class="text-center text-xl font-base text-gray-500">
<i class="bx bx-bookmark"></i>
</div>
<div
class="text-center text-xl font-medium text-gray-700 leading-none"
>
897
</div>
</div>
<div>
<div class="text-center text-xl font-base text-gray-500">
<i class="bx bx-user"></i>
</div>
<div
class="text-center text-xl font-medium text-gray-700 leading-none"
>
551K
</div>
</div>
</div>
<div class="px-4">
<button
class="py-2 w-full text-sm border border-transparent rounded bg-green-500 text-white hover:bg-green-400 focus:outline-none focus:border-green-500 focus:shadow-outline-blue active:bg-green-500 transition duration-150 ease-in-out inline-flex justify-center items-center"
>
<i class="bx bx-user-plus text-lg text-white mr-4"></i>
Add Friends
</button>
</div>
</div>
</div>
</div>
<div class="md:w-1/4">
<div class="bg-white border rounded m-4">
<div class="py-10 px-6">
<a href="">
<img
class="rounded-full mx-auto h-24 w-24 object-cover"
src="./../dist/avatar/nis.png"
alt=""
/>
</a>
<div class="py-4 text-center text-xl">
<h1 class="leading-5 font-medium text-xl">
Zero Black Coder
</h1>
<span class="text-base text-gray-600 font-normal"
>@zrcoder101</span
>
</div>
<div class="px-4 pb-4 text-center">
<button
class="px-6 py-2 text-sm border border-transparent rounded bg-green-500 text-white hover:bg-green-400 focus:outline-none focus:border-green-500 focus:shadow-outline-blue active:bg-green-500 transition duration-150 ease-in-out inline-flex items-center m-1"
>
<i class="bx bx-user text-white mr-4 text-base"></i>
Follow Me
</button>
</div>
<div class="px-4 pt-4 flex justify-between items-center">
<div>
<span
class="block text-center text-2xl font-medium text-gray-700"
>112K</span
>
<span class="text-gray-600 text-sm text-center"
>Followers</span
>
</div>
<div>
<span
class="block text-center text-2xl font-medium text-gray-700"
>52</span
>
<span class="text-gray-600 text-sm text-center"
>Followings</span
>
</div>
</div>
</div>
</div>
</div>
<div class="md:w-1/4">
<div class="bg-white border rounded m-4">
<div class="py-8 px-4">
<a href="">
<img
class="rounded-full mx-auto h-24 w-24 object-cover"
src="./../dist/avatar/nis.png"
alt=""
/>
</a>
<div class="py-4 text-center text-xl">
<h1 class="leading-3 font-medium text-xl">
Zero Black Coder
</h1>
<span class="text-sm text-gray-600 font-base leading-3"
>Sowftware Engineer</span
>
<div class="text-gray-600">
<a href="#" class="hover:text-gray-700">
<i class="bx bxl-linkedin"></i>
</a>
<a href="" class="hover:text-gray-700">
<i class="bx bxl-github"></i>
</a>
<a href="#" class="hover:text-gray-700">
<i class="bx bxl-instagram"></i>
</a>
</div>
<p class="text-sm text-gray-600 leading-5 mt-3">
Zero Black Coder is an Member of DPR living in panet namek,
I love to play with hooman
</p>
</div>
<div class="px-4">
<button
class="py-2 w-full text-sm border border-transparent rounded bg-green-500 text-white hover:bg-green-400 focus:outline-none focus:border-green-400 focus:shadow-outline-blue active:bg-green-500 transition duration-150 ease-in-out inline-flex justify-center items-center"
>
Hire Me
</button>
</div>
</div>
</div>
</div>
<div class="md:w-1/4">
<div class="bg-white border rounded m-4">
<a href="">
<img
class="rounded-t h-64 w-full object-cover"
src="./../dist/images/5.jpg"
alt=""
/>
</a>
<div class="px-4 py-3 border-b">
<div>
<a
href=""
class="font-medium text-gray-700 text-lg block leading-5"
>
Zero Black Coder
</a>
<span class="text-gray-500 text-sm">Member DPR</span>
</div>
<div class="my-2">
<p class="text-gray-600 text-sm">
Zero Black Coder is an Member of DPR living in panet namek.
</p>
</div>
</div>
<div class="px-4 py-2 flex justify-between items-center">
<div
class="inline-flex items-center justify-between text-gray-600"
>
<i class="bx bxs-user mr-2"></i>
<span class="text-sm">25 Freinds</span>
</div>
<div>
<span class="text-gray-600 text-sm">Joined in 2077</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Content -->
</div>
<!-- End wrapper -->
<!-- Footer -->
<div class="max-w-screen-xl mx-auto mb-4">
<div class="mt-4 mx-2 flex justify-between items-center">
<div class="text-gray-600">
MIT License- Copyright (c) 2021
<strong class="font-bold">Under-X</strong>
</div>
</div>
</div>
<!-- End footer -->
</body>
</html>