-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
992 lines (954 loc) · 52.5 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
<!doctype html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Tailwind CSS Developement -->
<!-- <link rel="stylesheet" href="CSS/output.css" /> -->
<!-- Tailwind CSS Final -->
<link rel="stylesheet" href="dist/css/final.css" />
<style>
.love {
width: 100%;
height: 100%;
background: conic-gradient(darkorange, hotpink, mediumaquamarine);
}
</style>
<script>
// On page load or when changing themes, best to add inline in `head` to avoid FOUC
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
</script>
<title>Tailwind CSS Portfolio</title>
</head>
<body>
<!-- Header Start -->
<header
class="w-full absolute top-0 left-0 z-10 flex items-center bg-transparent max-md:bg-neutral-400/10 max-md:backdrop-blur-sm"
>
<div class="container">
<div class="relative flex justify-between items-center">
<div class="px-4">
<a href="#home" class="block py-6">
<img
width="90"
src="./IMG/bruce-lee-logo.gif"
alt="Bruce Lee Art Logo"
/>
</a>
</div>
<div class="flex items-center px-4">
<button
id="hamburger"
name="hamburger"
type="button"
class="absolute right-4 block lg:hidden"
>
<span
class="hamburger-line transition duration-300 ease-in-out origin-top-left"
></span>
<span
class="hamburger-line transition duration-300 ease-in-out"
></span>
<span
class="hamburger-line transition duration-300 ease-in-out origin-bottom-left"
></span>
</button>
<nav
id="nav-menu"
class="max-w-[250px] z-[5] w-full absolute right-4 top-full hidden py-5 bg-white rounded-lg shadow-lg dark:bg-dark dark:shadow-light lg:max-w-full lg:static lg:block lg:bg-transparent lg:rounded-none lg:shadow-none lg:dark:bg-transparent"
>
<ul class="block lg:flex">
<li class="group">
<a
href="#home"
class="text-dark flex py-2 mx-8 text-base dark:text-white group-hover:text-primary"
>Home</a
>
</li>
<li class="group">
<a
href="#about"
class="text-dark flex py-2 mx-8 text-base dark:text-white group-hover:text-primary"
>About Me</a
>
</li>
<li class="group">
<a
href="#portfolio"
class="text-dark flex py-2 mx-8 text-base dark:text-white group-hover:text-primary"
>Portfolio</a
>
</li>
<li class="group">
<a
href="#client"
class="text-dark flex py-2 mx-8 text-base dark:text-white group-hover:text-primary"
>Client</a
>
</li>
<li class="group">
<a
href="#blog"
class="text-dark flex py-2 mx-8 text-base dark:text-white group-hover:text-primary"
>Blog</a
>
</li>
<li class="group">
<a
href="#contact"
class="text-dark flex py-2 mx-8 text-base dark:text-white group-hover:text-primary"
>Contact</a
>
</li>
<li class="flex items-center pb-3 pl-8 mt-2">
<div class="flex">
<span class="text-light mr-2 text-sm">Light</span>
<input type="checkbox" name="dark-toggle" id="dark-toggle" class="hidden">
<label for="dark-toggle">
<div class="bg-light w-9 h-5 flex items-center p-1 rounded-full cursor-pointer">
<div class="toggle-circle w-4 h-4 bg-white rounded-full transition duration-200 ease-in-out"></div>
</div>
</label>
<span class="text-light ml-2 text-sm">Dark</span>
</div>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<!-- Header End -->
<!-- Hero Section Start -->
<section id="home" class="pt-36 dark:bg-dark">
<div class="container">
<!-- Flex div is created to manage the multiple elements inside -->
<div class="flex flex-wrap">
<div class="w-full self-center px-4 md:w-1/2">
<h1 class="text-primary text-base font-semibold md:text-xl">
Hello y'all 👋, my name is
<div class="text-dark mt-1 text-4xl font-bold dark:text-white lg:text-5xl">
Brandon John!
</div>
</h1>
<h2 class="text-light mb-5 text-lg font-medium lg:text-xl">
Bachelor Student <span class="text-dark dark:text-white">|</span> Web Developer
Enthusiast
</h2>
<p class="text-light mb-10 font-medium leading-relaxed">
Learning Tailwind CSS will
<span class="text-dark font-bold dark:text-white">improve</span> your
<span class="text-dark font-bold dark:text-white">website</span> to become more
<span class="text-dark font-bold dark:text-white">engaging</span>!
</p>
<a
href="#"
class="bg-primary h-200 w-200 px-8 py-3 text-base font-semibold text-white rounded-full transition duration-300 ease-in-out hover:shadow-lg hover:opacity-80"
>Contact Me!</a
>
</div>
<div class="w-full self-end px-4 md:w-1/2">
<div class="relative mt-10 lg:right-0 lg:mt-0">
<img
src="./IMG/brucelee.png"
alt="Bruce Lee"
class="z-[1] mx-auto max-w-full relative lg:scale-110 md:max-lg:scale-150"
/>
<span
class="-translate-x-1/2 absolute bottom-0 left-1/2 md:scale-150"
>
<svg
width="400"
viewBox="0 0 200 200"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill="#08BDBA"
d="M41.1,-70.7C48.1,-59.4,45.1,-39.4,47,-24.6C48.8,-9.9,55.5,-0.5,55.4,8.7C55.2,17.9,48.2,26.8,40.9,35.7C33.6,44.6,26,53.6,15.2,61C4.4,68.4,-9.6,74.3,-19.9,70.2C-30.2,66.1,-36.9,51.9,-45.2,40.3C-53.5,28.7,-63.3,19.6,-66.9,8.3C-70.5,-2.9,-67.8,-16.4,-60.6,-25.8C-53.4,-35.3,-41.6,-40.8,-30.7,-50.3C-19.8,-59.8,-9.9,-73.2,3.6,-78.8C17,-84.3,34.1,-81.9,41.1,-70.7Z"
transform="translate(100 100) scale(1.1)"
/>
</svg>
</span>
</div>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- About Section Start -->
<section id="about" class="pt-36 pb-32 dark:bg-dark">
<div class="container">
<div class="flex flex-wrap">
<div class="w-full px-4 mb-10 lg:w-1/2">
<h4 class="text-primary mb-3 text-lg font-bold uppercase">
About Me
</h4>
<h2 class="text-dark max-w-md mb-5 text-3xl font-bold dark:text-white lg:text-4xl">
Web developer enthusiast to become a full-fledged full-stack
developer!
</h2>
<p class="text-light max-w-xl text-base font-medium lg:text-lg">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Inventore quo ducimus corrupti repellat tenetur vitae maiores?
</p>
</div>
<div class="w-full px-4 lg:w-1/2">
<h3
class="text-dark mb-4 text-2xl font-semibold dark:text-white lg:pt-10 lg:text-3xl"
>
Let's Connect!
</h3>
<p
class="text-light max-w-xl mb-6 text-base font-medium lg:text-lg"
>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Necessitatibus ducimus expedita soluta fugiat dolore, deleniti
est?
</p>
<div class="flex items-center">
<!-- First Icon -->
<a
href="#"
target="_blank"
class="bg-primary border-primary w-10 h-10 flex justify-center items-center mr-3 text-white rounded-full border hover:text-[#FF0000] hover:bg-white hover:border-red-500"
>
<svg
role="img"
width="24"
class="fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>YouTube</title>
<path
d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"
/>
</svg>
</a>
<!-- Second Icon -->
<a
href="#"
target="_blank"
class="bg-primary border-primary w-10 h-10 flex justify-center items-center mr-3 text-white rounded-full border hover:text-[#E4405F] hover:bg-white hover:border-amber-400"
>
<svg
role="img"
width="24"
class="fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Instagram</title>
<path
d="M7.0301.084c-1.2768.0602-2.1487.264-2.911.5634-.7888.3075-1.4575.72-2.1228 1.3877-.6652.6677-1.075 1.3368-1.3802 2.127-.2954.7638-.4956 1.6365-.552 2.914-.0564 1.2775-.0689 1.6882-.0626 4.947.0062 3.2586.0206 3.6671.0825 4.9473.061 1.2765.264 2.1482.5635 2.9107.308.7889.72 1.4573 1.388 2.1228.6679.6655 1.3365 1.0743 2.1285 1.38.7632.295 1.6361.4961 2.9134.552 1.2773.056 1.6884.069 4.9462.0627 3.2578-.0062 3.668-.0207 4.9478-.0814 1.28-.0607 2.147-.2652 2.9098-.5633.7889-.3086 1.4578-.72 2.1228-1.3881.665-.6682 1.0745-1.3378 1.3795-2.1284.2957-.7632.4966-1.636.552-2.9124.056-1.2809.0692-1.6898.063-4.948-.0063-3.2583-.021-3.6668-.0817-4.9465-.0607-1.2797-.264-2.1487-.5633-2.9117-.3084-.7889-.72-1.4568-1.3876-2.1228C21.2982 1.33 20.628.9208 19.8378.6165 19.074.321 18.2017.1197 16.9244.0645 15.6471.0093 15.236-.005 11.977.0014 8.718.0076 8.31.0215 7.0301.0839m.1402 21.6932c-1.17-.0509-1.8053-.2453-2.2287-.408-.5606-.216-.96-.4771-1.3819-.895-.422-.4178-.6811-.8186-.9-1.378-.1644-.4234-.3624-1.058-.4171-2.228-.0595-1.2645-.072-1.6442-.079-4.848-.007-3.2037.0053-3.583.0607-4.848.05-1.169.2456-1.805.408-2.2282.216-.5613.4762-.96.895-1.3816.4188-.4217.8184-.6814 1.3783-.9003.423-.1651 1.0575-.3614 2.227-.4171 1.2655-.06 1.6447-.072 4.848-.079 3.2033-.007 3.5835.005 4.8495.0608 1.169.0508 1.8053.2445 2.228.408.5608.216.96.4754 1.3816.895.4217.4194.6816.8176.9005 1.3787.1653.4217.3617 1.056.4169 2.2263.0602 1.2655.0739 1.645.0796 4.848.0058 3.203-.0055 3.5834-.061 4.848-.051 1.17-.245 1.8055-.408 2.2294-.216.5604-.4763.96-.8954 1.3814-.419.4215-.8181.6811-1.3783.9-.4224.1649-1.0577.3617-2.2262.4174-1.2656.0595-1.6448.072-4.8493.079-3.2045.007-3.5825-.006-4.848-.0608M16.953 5.5864A1.44 1.44 0 1 0 18.39 4.144a1.44 1.44 0 0 0-1.437 1.4424M5.8385 12.012c.0067 3.4032 2.7706 6.1557 6.173 6.1493 3.4026-.0065 6.157-2.7701 6.1506-6.1733-.0065-3.4032-2.771-6.1565-6.174-6.1498-3.403.0067-6.156 2.771-6.1496 6.1738M8 12.0077a4 4 0 1 1 4.008 3.9921A3.9996 3.9996 0 0 1 8 12.0077"
/>
</svg>
</a>
<!-- Third Icon -->
<a
href="#"
target="_blank"
class="bg-primary border-primary w-10 h-10 flex justify-center items-center mr-3 text-white rounded-full border hover:text-[#5865F2] hover:bg-white hover:border-indigo-700"
>
<svg
role="img"
width="24"
class="fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Discord</title>
<path
d="M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z"
/>
</svg>
</a>
<!-- Fourth Icon -->
<a
href="#"
target="_blank"
class="bg-primary border-primary w-10 h-10 flex justify-center items-center mr-3 text-white rounded-full border group hover:bg-white hover:border-teal-400"
>
<div class="block group-hover:hidden">
<svg
role="img"
width="24"
class="fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Slack</title>
<path
d="M5.042 15.165a2.528 2.528 0 0 1-2.52 2.523A2.528 2.528 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52v2.52zM6.313 15.165a2.527 2.527 0 0 1 2.521-2.52 2.527 2.527 0 0 1 2.521 2.52v6.313A2.528 2.528 0 0 1 8.834 24a2.528 2.528 0 0 1-2.521-2.522v-6.313zM8.834 5.042a2.528 2.528 0 0 1-2.521-2.52A2.528 2.528 0 0 1 8.834 0a2.528 2.528 0 0 1 2.521 2.522v2.52H8.834zM8.834 6.313a2.528 2.528 0 0 1 2.521 2.521 2.528 2.528 0 0 1-2.521 2.521H2.522A2.528 2.528 0 0 1 0 8.834a2.528 2.528 0 0 1 2.522-2.521h6.312zM18.956 8.834a2.528 2.528 0 0 1 2.522-2.521A2.528 2.528 0 0 1 24 8.834a2.528 2.528 0 0 1-2.522 2.521h-2.522V8.834zM17.688 8.834a2.528 2.528 0 0 1-2.523 2.521 2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.528 2.528 0 0 1 2.523 2.522v6.312zM15.165 18.956a2.528 2.528 0 0 1 2.523 2.522A2.528 2.528 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522h2.52zM15.165 17.688a2.527 2.527 0 0 1-2.52-2.523 2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.528 2.528 0 0 1-2.522 2.523h-6.313z"
/>
</svg>
</div>
<span class="hidden group-hover:block">
<svg
role="img"
width="24"
class="fill-current hover:fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Slack</title>
<path
d="m2.42,17.79zm6.31,-12.65a2.53,2.53 0 0 1 -2.52,-2.52a2.53,2.53 0 0 1 2.52,-2.52a2.53,2.53 0 0 1 2.53,2.52l0,2.52l-2.53,0zm0,1.27a2.53,2.53 0 0 1 2.53,2.52a2.53,2.53 0 0 1 -2.53,2.53l-6.31,0a2.53,2.53 0 0 1 -2.52,-2.53a2.53,2.53 0 0 1 2.52,-2.52l6.31,0z"
id="svg_1"
fill="#31bdf5"
/>
<path
d="m2.42,17.89zm16.44,-8.86a2.53,2.53 0 0 1 2.52,-2.52a2.53,2.53 0 0 1 2.52,2.52a2.53,2.53 0 0 1 -2.52,2.53l-2.52,0l0,-2.53zm-1.27,0a2.53,2.53 0 0 1 -2.53,2.53a2.53,2.53 0 0 1 -2.52,-2.53l0,-6.31a2.53,2.53 0 0 1 2.52,-2.52a2.53,2.53 0 0 1 2.53,2.52l0,6.31z"
id="svg_2"
fill="#069c5d"
/>
<path
d="m2.52,17.59zm12.64,1.27a2.53,2.53 0 0 1 2.53,2.52a2.53,2.53 0 0 1 -2.53,2.52a2.53,2.53 0 0 1 -2.52,-2.52l0,-2.52l2.52,0zm0,-1.27a2.53,2.53 0 0 1 -2.52,-2.53a2.53,2.53 0 0 1 2.52,-2.52l6.32,0a2.53,2.53 0 0 1 2.52,2.52a2.53,2.53 0 0 1 -2.52,2.53l-6.31,0l-0.01,0z"
id="svg_3"
fill="#d9aa1c"
/>
<path
d="m5.04,15.06a2.53,2.53 0 0 1 -2.52,2.53a2.53,2.53 0 0 1 -2.52,-2.53a2.53,2.53 0 0 1 2.52,-2.52l2.52,0l0,2.52zm1.27,0a2.53,2.53 0 0 1 2.52,-2.52a2.53,2.53 0 0 1 2.53,2.52l0,6.32a2.53,2.53 0 0 1 -2.53,2.52a2.53,2.53 0 0 1 -2.52,-2.52l0,-6.31l0,-0.01z"
id="svg_4"
fill="#c42104"
/>
</svg>
</span>
</a>
<!-- Fifth Icon -->
<a
href="#"
target="_blank"
class="bg-primary border-primary w-10 h-10 flex justify-center items-center mr-3 text-white rounded-full border hover:text-[#0A66C2] hover:bg-white hover:border-blue-500"
>
<svg
role="img"
width="20"
class="fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>LinkedIn</title>
<path
d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"
/>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- About Section End -->
<!-- Portfolio Section Start -->
<section id="portfolio" class="pt-36 pb-16 bg-slate-100 dark:bg-slate-800">
<div class="container">
<div width="w-full px-4">
<div class="mx-auto max-w-xl mb-16 text-center">
<h4 class="text-primary mb-2 text-lg font-semibold text-pretty lg:text-3xl md:text-2xl">
Portfolio
</h4>
<h2
class="text-dark mb-4 text-3xl font-bold dark:text-white lg:text-5xl sm:text-4xl"
>
Recent Projects
</h2>
<p class="text-light text-md font-medium md:text-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Impedit
laboriosam voluptatibus facilis, ut maxime similique quisquam
ipsam illo? Facere, laudantium.
</p>
</div>
</div>
<div class="w-full flex flex-wrap justify-center px-4">
<div class="p-4 mb-12 md:w-1/2">
<div class="overflow-hidden rounded-md shadow-md transition duration-500 hover:scale-95">
<img
src="./IMG/Portfolio/1.jpg"
alt="Project 1 of Portfolio"
class="w-full transition duration-500 hover:scale-125"
/>
</div>
<h3 class="text-dark mt-5 mb-3 text-xl font-semibold dark:text-white">Project 1</h3>
<p class="text-light text-base font-medium">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quae
veniam aliquid dolorem nemo veritatis ducimus voluptate rem saepe
illo ipsa, dicta placeat facilis optio perspiciatis ex! Fuga in
voluptatibus ipsa?
</p>
<a href="#" class="overflow-hidden relative inline-flex items-center px-7 py-3 mt-5 font-medium text-gray-600 bg-gray-100 rounded-lg border border-gray-100 shadow-inner group dark:text-white dark:bg-slate-800 dark:border-none">
<span class="-translate-x-full absolute invisible text-base font-semibold group-hover:-translate-x-4 group-hover:visible group-hover:delay-200">LINK</span>
<div class="-rotate-45 -translate-x-3 relative transition duration-500 group-hover:translate-x-[1.5rem]">
<svg class="w-4 h-4 rotate-45" viewBox="-4.5 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>arrow_right [#336]</title>
<desc>Created with Sketch.</desc>
<defs>
</defs>
<g id="Page-1" class="fill-dark dark:fill-white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Dribbble-Light-Preview" transform="translate(-305.000000, -6679.000000)">
<g id="icons" transform="translate(56.000000, 160.000000)">
<path d="M249.365851,6538.70769 L249.365851,6538.70769 C249.770764,6539.09744 250.426289,6539.09744 250.830166,6538.70769 L259.393407,6530.44413 C260.202198,6529.66364 260.202198,6528.39747 259.393407,6527.61699 L250.768031,6519.29246 C250.367261,6518.90671 249.720021,6518.90172 249.314072,6519.28247 L249.314072,6519.28247 C248.899839,6519.67121 248.894661,6520.31179 249.302681,6520.70653 L257.196934,6528.32352 C257.601847,6528.71426 257.601847,6529.34685 257.196934,6529.73759 L249.365851,6537.29462 C248.960938,6537.68437 248.960938,6538.31795 249.365851,6538.70769" id="arrow_right-[#336]">
</path>
</g>
</g>
</g>
</svg>
</div>
</a>
</div>
<div class="p-4 mb-12 md:w-1/2">
<div class="overflow-hidden rounded-md shadow-md transition duration-500 hover:scale-95">
<img
src="./IMG/Portfolio/2.jpg"
alt="Project 2 of Portfolio"
class="w-full transition duration-500 hover:scale-125"
/>
</div>
<h3 class="text-dark mt-5 mb-3 text-xl font-semibold dark:text-white">Project 2</h3>
<p class="text-light text-base font-medium">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quae
veniam aliquid dolorem nemo veritatis ducimus voluptate rem saepe
illo ipsa, dicta placeat facilis optio perspiciatis ex! Fuga in
voluptatibus ipsa?
</p>
<a href="#" class="overflow-hidden relative inline-flex justify-center items-center p-7 py-4 mt-5 mb-5 font-medium text-indigo-600 rounded-lg border border-gray-200 shadow-inner transition duration-300 ease-out group dark:border-none">
<span class="-translate-x-full bg-primary ease w-full h-full absolute inset-0 flex justify-center items-center text-sm text-white duration-300 group-hover:translate-x-0">
LINK
</span>
<span class="ease text-primary transform w-full h-full absolute flex justify-center items-center transition-all duration-300 group-hover:translate-x-full">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path></svg>
</span>
<!-- <span class="relative invisible">Button Text</span> -->
</a>
</div>
<div class="p-4 mb-12 md:w-1/2">
<div class="overflow-hidden rounded-md shadow-md transition duration-500 hover:scale-95">
<img
src="./IMG/Portfolio/3.jpg"
alt="Project 3 of Portfolio"
class="w-full transition duration-500 hover:scale-125"
/>
</div>
<h3 class="text-dark mt-5 mb-3 text-xl font-semibold dark:text-white">Project 3</h3>
<p class="text-light text-base font-medium">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quae
veniam aliquid dolorem nemo veritatis ducimus voluptate rem saepe
illo ipsa, dicta placeat facilis optio perspiciatis ex! Fuga in
voluptatibus ipsa?
</p>
<a href="#" class="overflow-hidden relative inline-flex items-center px-7 py-3 mt-5 font-medium text-gray-600 bg-gray-100 rounded-lg border border-gray-100 shadow-inner group dark:text-white dark:bg-slate-800 dark:border-none">
<span class="-translate-x-full absolute invisible text-base font-semibold group-hover:-translate-x-4 group-hover:visible group-hover:delay-200">LINK</span>
<div class="-rotate-45 -translate-x-3 relative transition duration-500 group-hover:translate-x-[1.5rem]">
<svg class="w-4 h-4 rotate-45" viewBox="-4.5 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>arrow_right [#336]</title>
<desc>Created with Sketch.</desc>
<defs>
</defs>
<g id="Page-3" class="fill-dark dark:fill-white" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Dribbble-Light-Preview" transform="translate(-305.000000, -6679.000000)">
<g id="icons" transform="translate(56.000000, 160.000000)">
<path d="M249.365851,6538.70769 L249.365851,6538.70769 C249.770764,6539.09744 250.426289,6539.09744 250.830166,6538.70769 L259.393407,6530.44413 C260.202198,6529.66364 260.202198,6528.39747 259.393407,6527.61699 L250.768031,6519.29246 C250.367261,6518.90671 249.720021,6518.90172 249.314072,6519.28247 L249.314072,6519.28247 C248.899839,6519.67121 248.894661,6520.31179 249.302681,6520.70653 L257.196934,6528.32352 C257.601847,6528.71426 257.601847,6529.34685 257.196934,6529.73759 L249.365851,6537.29462 C248.960938,6537.68437 248.960938,6538.31795 249.365851,6538.70769" id="arrow_right-[#336]">
</path>
</g>
</g>
</g>
</svg>
</div>
</a>
</div>
<div class="p-4 mb-12 md:w-1/2">
<div class="overflow-hidden rounded-md shadow-md transition duration-500 hover:scale-95">
<img
src="./IMG/Portfolio/4.jpg"
alt="Project 4 of Portfolio"
class="w-full transition duration-500 hover:scale-125"
/>
</div>
<h3 class="text-dark mt-5 mb-3 text-xl font-semibold dark:text-white">Project 4</h3>
<p class="text-light text-base font-medium">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quae
veniam aliquid dolorem nemo veritatis ducimus voluptate rem saepe
illo ipsa, dicta placeat facilis optio perspiciatis ex! Fuga in
voluptatibus ipsa?
</p>
<a href="#" class="overflow-hidden relative inline-flex justify-center items-center p-7 py-4 mt-5 mb-5 font-medium text-indigo-600 rounded-lg border border-gray-200 shadow-inner transition duration-300 ease-out group dark:border-none">
<span class="-translate-x-full bg-primary ease w-full h-full absolute inset-0 flex justify-center items-center text-sm text-white duration-300 group-hover:translate-x-0">
LINK
</span>
<span class="ease text-primary transform w-full h-full absolute flex justify-center items-center transition-all duration-300 group-hover:translate-x-full">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path></svg>
</span>
<!-- <span class="relative invisible">Button Text</span> -->
</a>
</div>
</div>
</div>
</section>
<!-- Portfolio Section End -->
<!-- Client Section Start -->
<section id="client" class="pt-36 pb-32 bg-slate-900 dark:bg-light">
<div class="container">
<div class="w-full px-4">
<div class="mx-auto mb-16 text-center">
<h4 class="text-primary mb-2 text-lg font-semibold text-pretty lg:text-3xl md:text-2xl">
Client
</h4>
<h2
class="mb-4 text-3xl font-bold text-white dark:text-dark lg:text-5xl sm:text-4xl"
>
Past Collaboration
</h2>
<p class="text-lighter text-md font-medium md:text-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Impedit
laboriosam voluptatibus facilis, ut maxime similique quisquam
ipsam illo? Facere, laudantium.
</p>
</div>
</div>
<div class="w-full px-4">
<div class="flex flex-wrap justify-center items-center">
<a
href="#"
class="max-w-[120px] py-4 mx-4 opacity-60 grayscale transition duration-300 hover:opacity-100 hover:grayscale-0 lg:mx-6 xl:mx-8"
>
<img src="./IMG/Client/google-2015-logo.svg" alt="Client 1" />
</a>
<a
href="#"
class="max-w-[120px] py-4 mx-4 opacity-60 grayscale transition duration-300 hover:opacity-100 hover:grayscale-0 lg:mx-6 xl:mx-8"
>
<img src="./IMG/Client/itpro-logo.svg" alt="Client 2" />
</a>
<a
href="#"
class="max-w-[120px] py-4 mx-4 opacity-60 grayscale transition duration-300 hover:opacity-100 hover:grayscale-0 lg:mx-6 xl:mx-8"
>
<img src="./IMG/Client/docker-logo.svg" alt="Client 3" />
</a>
<a
href="#"
class="max-w-[120px] py-4 mx-4 opacity-60 grayscale transition duration-300 hover:opacity-100 hover:grayscale-0 lg:mx-6 xl:mx-8"
>
<img src="./IMG/Client/slack-logo.svg" alt="Client 4" />
</a>
</div>
</div>
</div>
</section>
<!-- Client Section End -->
<!-- Blog Section Start -->
<section id="blog" class="pt-36 pb-32 bg-slate-100 dark:bg-dark">
<div class="container">
<div class="w-full px-4">
<div class="mx-auto max-w-xl mb-16 text-center">
<h4 class="text-primary mb-2 text-lg font-semibold text-pretty lg:text-3xl md:text-2xl">
Blog
</h4>
<h2
class="text-dark mb-4 text-3xl font-bold dark:text-white lg:text-5xl sm:text-4xl"
>
Recent Writing
</h2>
<p class="text-light text-md font-medium md:text-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Impedit
laboriosam voluptatibus facilis, ut maxime similique quisquam
ipsam illo? Facere, laudantium.
</p>
</div>
<div class="flex flex-wrap">
<div class="w-full px-4 md:w-1/2 xl:w-1/3">
<div
class="transform overflow-hidden mb-10 bg-white rounded-xl shadow-lg transition duration-500 dark:bg-lighter hover:scale-110"
>
<img src="./IMG/Blog/1.jpg" alt="Blog 1" class="w-full" />
<div class="px-6 py-8">
<h3>
<a
href=""
class="text-dark block mb-3 text-xl font-semibold truncate dark:text-white hover:text-primary"
>Blog Title 1</a
>
</h3>
<p class="text-light mb-6 text-base font-medium dark:text-dark dark:font-bold">
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Repudiandae, eligendi?
</p>
<a
href="#"
class="bg-primary max-w-[120px] transform block px-4 py-2 text-sm font-medium text-center text-white rounded-lg transition duration-500 hover:opacity-80 hover:scale-110"
>Read More</a
>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 xl:w-1/3">
<div
class="transform overflow-hidden mb-10 bg-white rounded-xl shadow-lg transition duration-500 dark:bg-lighter hover:scale-110"
>
<img src="./IMG/Blog/2.jpg" alt="Blog 2" class="w-full" />
<div class="px-6 py-8">
<h3>
<a
href=""
class="text-dark block mb-3 text-xl font-semibold truncate dark:text-white hover:text-primary"
>Blog Title 2</a
>
</h3>
<p class="text-light mb-6 text-base font-medium dark:text-dark dark:font-bold">
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Repudiandae, eligendi?
</p>
<a
href="#"
class="bg-primary max-w-[120px] transform block px-4 py-2 text-sm font-medium text-center text-white rounded-lg transition duration-500 hover:opacity-80 hover:scale-110"
>Read More</a
>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 xl:w-1/3">
<div
class="transform overflow-hidden mb-10 bg-white rounded-xl shadow-lg transition duration-500 dark:bg-lighter hover:scale-110"
>
<img src="./IMG/Blog/3.jpg" alt="Blog 3" class="w-full" />
<div class="px-6 py-8">
<h3>
<a
href=""
class="text-dark block mb-3 text-xl font-semibold truncate dark:text-white hover:text-primary"
>Blog Title 3</a
>
</h3>
<p class="text-light mb-6 text-base font-medium dark:text-dark dark:font-bold">
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Repudiandae, eligendi?
</p>
<a
href="#"
class="bg-primary max-w-[120px] transform block px-4 py-2 text-sm font-medium text-center text-white rounded-lg transition duration-500 hover:opacity-80 hover:scale-110"
>Read More</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Blog Section End -->
<!-- Contact Section Start -->
<section id="contact" class="pt-36 pb-32 dark:bg-slate-800">
<div class="container">
<div class="w-full px-4">
<div class="mx-auto max-w-xl mb-16 text-center">
<h4 class="text-primary mb-2 text-lg font-semibold text-pretty lg:text-3xl md:text-2xl">
Contact Me
</h4>
<h2
class="text-dark mb-4 text-3xl font-bold dark:text-white lg:text-5xl sm:text-4xl"
>
Discuss with Me!
</h2>
<p class="text-light text-md font-medium md:text-lg">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Impedit
laboriosam voluptatibus facilis, ut maxime similique quisquam
ipsam illo? Facere, laudantium.
</p>
</div>
<form class="w-full lg:mx-auto lg:w-2/3" action="#">
<div class="w-full px-4 mb-8">
<label for="name" class="text-primary text-base font-bold"
>Name</label
>
<input
type="text"
id="name"
class="text-dark w-full p-3 bg-slate-200 rounded-md focus:border-primary focus:ring-primary focus:outline-none focus:ring-1"
/>
</div>
<div class="w-full px-4 mb-8">
<label for="email" class="text-primary text-base font-bold"
>Email</label
>
<input
type="email"
id="email"
class="auto text-dark w-full p-3 bg-slate-200 rounded-md focus:border-primary focus:ring-primary focus:outline-none focus:ring-1"
/>
</div>
<div class="w-full px-4 mb-8">
<label for="message" class="text-primary text-base font-bold"
>Message</label
>
<textarea
type="text"
id="message"
class="text-dark w-full h-32 p-3 bg-slate-200 rounded-md resize-none focus:border-primary focus:ring-primary focus:outline-none focus:ring-1"
></textarea>
</div>
<div class="w-full px-4">
<button
class="bg-primary w-full px-8 py-3 text-base font-semibold text-white rounded-full transition duration-300 hover:shadow-lg hover:opacity-80"
>
Send
</button>
</div>
</form>
</div>
</div>
</section>
<!-- Contact Section End -->
<!-- Footer Start -->
<footer class="bg-dark pt-24 pb-12">
<div class="container">
<div class="flex flex-wrap">
<div class="text-lighter w-full px-4 mb-12 font-medium md:w-1/3">
<h2 class="mb-3 text-4xl font-bold text-white">Brandon's Abode</h2>
<h3 class="mb-2 text-2xl font-bold">Contact Me</h3>
<p>brandonjohnlyc@gmail.com</p>
<p>Jl. Anggrek Pondok Kacang Timur Pondok Aren</p>
<p>Tangerang Selatan</p>
</div>
<div class="w-full px-4 mb-12 md:w-1/3">
<h3 class="mb-5 text-xl font-semibold text-white">Blog Category</h3>
<ul class="text-lighter">
<li>
<a
href="#"
class="inline-block mb-3 text-base hover:text-primary"
>Web Programming</a
>
</li>
<li>
<a
href="#"
class="inline-block mb-3 text-base hover:text-primary"
>Games</a
>
</li>
<li>
<a
href="#"
class="inline-block mb-3 text-base hover:text-primary"
>Lifestyle</a
>
</li>
</ul>
</div>
<div class="w-full px-4 mb-12 md:w-1/3">
<h3 class="mb-5 text-xl font-semibold text-white">Section</h3>
<ul class="text-lighter">
<li>
<a
href="#home"
class="inline-block mb-3 text-base hover:text-primary"
>Home</a
>
</li>
<li>
<a
href="#about"
class="inline-block mb-3 text-base hover:text-primary"
>About</a
>
</li>
<li>
<a
href="#portfolio"
class="inline-block mb-3 text-base hover:text-primary"
>Portfolio</a
>
</li>
<li>
<a
href="#client"
class="inline-block mb-3 text-base hover:text-primary"
>Client</a
>
</li>
<li>
<a
href="#contact"
class="inline-block mb-3 text-base hover:text-primary"
>Contact</a
>
</li>
</ul>
</div>
</div>
<div class="w-full pt-10 border-t border-slate-600">
<div class="flex justify-center items-center mb-5">
<!-- First Icon -->
<a
href="#"
target="_blank"
class="bg-primary border-primary w-10 h-10 flex justify-center items-center mr-3 text-white rounded-full border hover:text-[#FF0000] hover:bg-white hover:border-rose-500"
>
<svg
role="img"
width="24"
class="fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>YouTube</title>
<path
d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"
/>
</svg>
</a>
<!-- Second Icon -->
<a
href="#"
target="_blank"
class="bg-primary border-primary w-10 h-10 flex justify-center items-center mr-3 text-white rounded-full border hover:text-[#E4405F] hover:bg-white hover:border-amber-400"
>
<svg
role="img"
width="24"
class="fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Instagram</title>
<path
d="M7.0301.084c-1.2768.0602-2.1487.264-2.911.5634-.7888.3075-1.4575.72-2.1228 1.3877-.6652.6677-1.075 1.3368-1.3802 2.127-.2954.7638-.4956 1.6365-.552 2.914-.0564 1.2775-.0689 1.6882-.0626 4.947.0062 3.2586.0206 3.6671.0825 4.9473.061 1.2765.264 2.1482.5635 2.9107.308.7889.72 1.4573 1.388 2.1228.6679.6655 1.3365 1.0743 2.1285 1.38.7632.295 1.6361.4961 2.9134.552 1.2773.056 1.6884.069 4.9462.0627 3.2578-.0062 3.668-.0207 4.9478-.0814 1.28-.0607 2.147-.2652 2.9098-.5633.7889-.3086 1.4578-.72 2.1228-1.3881.665-.6682 1.0745-1.3378 1.3795-2.1284.2957-.7632.4966-1.636.552-2.9124.056-1.2809.0692-1.6898.063-4.948-.0063-3.2583-.021-3.6668-.0817-4.9465-.0607-1.2797-.264-2.1487-.5633-2.9117-.3084-.7889-.72-1.4568-1.3876-2.1228C21.2982 1.33 20.628.9208 19.8378.6165 19.074.321 18.2017.1197 16.9244.0645 15.6471.0093 15.236-.005 11.977.0014 8.718.0076 8.31.0215 7.0301.0839m.1402 21.6932c-1.17-.0509-1.8053-.2453-2.2287-.408-.5606-.216-.96-.4771-1.3819-.895-.422-.4178-.6811-.8186-.9-1.378-.1644-.4234-.3624-1.058-.4171-2.228-.0595-1.2645-.072-1.6442-.079-4.848-.007-3.2037.0053-3.583.0607-4.848.05-1.169.2456-1.805.408-2.2282.216-.5613.4762-.96.895-1.3816.4188-.4217.8184-.6814 1.3783-.9003.423-.1651 1.0575-.3614 2.227-.4171 1.2655-.06 1.6447-.072 4.848-.079 3.2033-.007 3.5835.005 4.8495.0608 1.169.0508 1.8053.2445 2.228.408.5608.216.96.4754 1.3816.895.4217.4194.6816.8176.9005 1.3787.1653.4217.3617 1.056.4169 2.2263.0602 1.2655.0739 1.645.0796 4.848.0058 3.203-.0055 3.5834-.061 4.848-.051 1.17-.245 1.8055-.408 2.2294-.216.5604-.4763.96-.8954 1.3814-.419.4215-.8181.6811-1.3783.9-.4224.1649-1.0577.3617-2.2262.4174-1.2656.0595-1.6448.072-4.8493.079-3.2045.007-3.5825-.006-4.848-.0608M16.953 5.5864A1.44 1.44 0 1 0 18.39 4.144a1.44 1.44 0 0 0-1.437 1.4424M5.8385 12.012c.0067 3.4032 2.7706 6.1557 6.173 6.1493 3.4026-.0065 6.157-2.7701 6.1506-6.1733-.0065-3.4032-2.771-6.1565-6.174-6.1498-3.403.0067-6.156 2.771-6.1496 6.1738M8 12.0077a4 4 0 1 1 4.008 3.9921A3.9996 3.9996 0 0 1 8 12.0077"
/>
</svg>
</a>
<!-- Third Icon -->
<a
href="#"
target="_blank"
class="bg-primary border-primary w-10 h-10 flex justify-center items-center mr-3 text-white rounded-full border hover:text-[#5865F2] hover:bg-white hover:border-indigo-700"
>
<svg
role="img"
width="24"
class="fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Discord</title>
<path
d="M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z"
/>
</svg>
</a>
<!-- Fourth Icon -->
<a
href="#"
target="_blank"
class="bg-primary border-primary w-10 h-10 flex justify-center items-center mr-3 text-white rounded-full border group hover:bg-white hover:border-teal-400"
>
<div class="block group-hover:hidden">
<svg
role="img"
width="24"
class="fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Slack</title>
<path
d="M5.042 15.165a2.528 2.528 0 0 1-2.52 2.523A2.528 2.528 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52v2.52zM6.313 15.165a2.527 2.527 0 0 1 2.521-2.52 2.527 2.527 0 0 1 2.521 2.52v6.313A2.528 2.528 0 0 1 8.834 24a2.528 2.528 0 0 1-2.521-2.522v-6.313zM8.834 5.042a2.528 2.528 0 0 1-2.521-2.52A2.528 2.528 0 0 1 8.834 0a2.528 2.528 0 0 1 2.521 2.522v2.52H8.834zM8.834 6.313a2.528 2.528 0 0 1 2.521 2.521 2.528 2.528 0 0 1-2.521 2.521H2.522A2.528 2.528 0 0 1 0 8.834a2.528 2.528 0 0 1 2.522-2.521h6.312zM18.956 8.834a2.528 2.528 0 0 1 2.522-2.521A2.528 2.528 0 0 1 24 8.834a2.528 2.528 0 0 1-2.522 2.521h-2.522V8.834zM17.688 8.834a2.528 2.528 0 0 1-2.523 2.521 2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.528 2.528 0 0 1 2.523 2.522v6.312zM15.165 18.956a2.528 2.528 0 0 1 2.523 2.522A2.528 2.528 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522h2.52zM15.165 17.688a2.527 2.527 0 0 1-2.52-2.523 2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.528 2.528 0 0 1-2.522 2.523h-6.313z"
/>
</svg>
</div>
<span class="hidden group-hover:block">
<svg
role="img"
width="24"
class="fill-current hover:fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Slack</title>
<path
d="m2.42,17.79zm6.31,-12.65a2.53,2.53 0 0 1 -2.52,-2.52a2.53,2.53 0 0 1 2.52,-2.52a2.53,2.53 0 0 1 2.53,2.52l0,2.52l-2.53,0zm0,1.27a2.53,2.53 0 0 1 2.53,2.52a2.53,2.53 0 0 1 -2.53,2.53l-6.31,0a2.53,2.53 0 0 1 -2.52,-2.53a2.53,2.53 0 0 1 2.52,-2.52l6.31,0z"
id="svg_1"
fill="#31bdf5"
/>
<path
d="m2.42,17.89zm16.44,-8.86a2.53,2.53 0 0 1 2.52,-2.52a2.53,2.53 0 0 1 2.52,2.52a2.53,2.53 0 0 1 -2.52,2.53l-2.52,0l0,-2.53zm-1.27,0a2.53,2.53 0 0 1 -2.53,2.53a2.53,2.53 0 0 1 -2.52,-2.53l0,-6.31a2.53,2.53 0 0 1 2.52,-2.52a2.53,2.53 0 0 1 2.53,2.52l0,6.31z"
id="svg_2"
fill="#069c5d"
/>
<path
d="m2.52,17.59zm12.64,1.27a2.53,2.53 0 0 1 2.53,2.52a2.53,2.53 0 0 1 -2.53,2.52a2.53,2.53 0 0 1 -2.52,-2.52l0,-2.52l2.52,0zm0,-1.27a2.53,2.53 0 0 1 -2.52,-2.53a2.53,2.53 0 0 1 2.52,-2.52l6.32,0a2.53,2.53 0 0 1 2.52,2.52a2.53,2.53 0 0 1 -2.52,2.53l-6.31,0l-0.01,0z"
id="svg_3"
fill="#d9aa1c"
/>
<path
d="m5.04,15.06a2.53,2.53 0 0 1 -2.52,2.53a2.53,2.53 0 0 1 -2.52,-2.53a2.53,2.53 0 0 1 2.52,-2.52l2.52,0l0,2.52zm1.27,0a2.53,2.53 0 0 1 2.52,-2.52a2.53,2.53 0 0 1 2.53,2.52l0,6.32a2.53,2.53 0 0 1 -2.53,2.52a2.53,2.53 0 0 1 -2.52,-2.52l0,-6.31l0,-0.01z"
id="svg_4"
fill="#c42104"
/>
</svg>
</span>
</a>
<!-- Fifth Icon -->
<a
href="#"
target="_blank"
class="bg-primary border-primary w-10 h-10 flex justify-center items-center mr-3 text-white rounded-full border hover:text-[#0A66C2] hover:bg-white hover:border-blue-500"
>
<svg
role="img"
width="20"
class="fill-current"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>LinkedIn</title>
<path
d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"
/>
</svg>
</a>
</div>
<p class="text-lighter text-xs font-medium text-center">
Created with <span class="text-red-600">❤</span> by
<a
href="#"
target="_blank"
rel="noopener noreferrer"
class="text-primary font-bold"
>Brandon John</a
> using
<a
href="https://tailwindcss.com/docs/installation"
target="_blank"
rel="noopener noreferrer"
class="font-bold text-sky-500"
>Tailwind
<svg
role="img"
class="w-5 inline fill-sky-500"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Tailwind CSS</title>
<path
d="M12.001,4.8c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 C13.666,10.618,15.027,12,18.001,12c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C16.337,6.182,14.976,4.8,12.001,4.8z M6.001,12c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 c1.177,1.194,2.538,2.576,5.512,2.576c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C10.337,13.382,8.976,12,6.001,12z"
/>
</svg>
3.4.9</a
>
</p>
</div>
</div>
</footer>
<!-- Footer End -->
<!-- Back to Top Start -->
<a href="#" id="to-top" class="bg-primary z-[999] w-14 h-14 fixed right-4 bottom-4 hidden justify-center items-center p-4 rounded-full hover:animate-pulse">
<span class="w-5 h-5 block mt-2 border-t-2 border-l-2 rotate-45"></span>
</a>
<!-- Back to Top End -->
<script src="./JS/script.js"></script>
</body>
</html>