-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
874 lines (838 loc) · 71.6 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
<!doctype html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Muhamad Nur Syami</title>
<link href="dist/css/final.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=REM&display=swap" rel="stylesheet">
<script>
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>
</head>
<body class="scrollbar-thin scrollbar-thumb-primary scrollbar-track-white dark:scrollbar-track-dark">
<!-- Header -->
<header
class="bg-transparent absolute top-0 left-0 w-full flex items-center z-10"
>
<div class="container">
<div class="flex items-center justify-between relative">
<div class="px-4">
<a href="#home" class="py-6 block font-bold text-lg text-primary bg-clip-text text-transparent bg-gradient-to-r from-primary to-blue-500">
MUHAMAD NUR SYAMI
</a>
</div>
<div class="flex items-center px-4">
<button
id="hamburger"
name="hamburger"
type="button"
class="block absolute right-4 lg:hidden"
>
<span
class="hamburger-lane transition duration-300 ease-in-out origin-top-left"
></span>
<span
class="hamburger-lane transition duration-300 ease-in-out"
></span>
<span
class="hamburger-lane transition duration-300 ease-in-out origin-bottom-left"
></span>
</button>
<nav
id="nav-menu"
class="lg:block lg:shadow-none dark:bg-dark lg:dark:bg-transparent dark:shadow-slate-800 lg:rounded-none lg:static lg:bg-transparent lg:max-w-full hidden absolute py-5 bg-white shadow-lg rounded-lg max-w-[250px] w-full right-4 top-full"
>
<ul class="block lg:flex">
<li class="group">
<a
href="#about"
class="text-base text-dark py-2 mx-8 flex group-hover:text-primary dark:text-white"
>
ABOUT
</a>
</li>
<li class="group">
<a
href="#portofolio"
class="text-base text-dark py-2 mx-8 flex group-hover:text-primary dark:text-white"
>
PORTOFOLIO
</a>
</li>
<li class="group">
<a
href="#achievements"
class="text-base text-dark py-2 mx-8 flex group-hover:text-primary dark:text-white"
>
ACHIEVEMENTS
</a>
</li>
<li class="group">
<a
href="#contact"
class="text-base text-dark py-2 mx-8 flex group-hover:text-primary dark:text-white"
>
CONTACT
</a>
</li>
<li class=" lg:mt-0 mt-3 flex items-center pl-8">
<di class="flex">
<!-- -->
<span class="mr-2 text-sm" ><svg role="img" class="dark:fill-white" width="20" viewBox="0 0 24 24" aria-labelledby="color-scheme-light"><path d="M12 18c-3.309 0-6-2.691-6-6s2.691-6 6-6 6 2.691 6 6-2.691 6-6 6zm0-10c-2.206 0-4 1.794-4 4s1.794 4 4 4 4-1.794 4-4-1.794-4-4-4zm0-4a1 1 0 0 1-1-1V1a1 1 0 0 1 2 0v2a1 1 0 0 1-1 1zm0 20a1 1 0 0 1-1-1v-2a1 1 0 1 1 2 0v2a1 1 0 0 1-1 1zM5.64 6.64a.997.997 0 0 1-.707-.293l-1.42-1.42a.999.999 0 1 1 1.414-1.414l1.42 1.42A.999.999 0 0 1 5.64 6.64zm14.139 14.139a.997.997 0 0 1-.707-.293l-1.42-1.42a.999.999 0 1 1 1.414-1.414l1.42 1.42a.999.999 0 0 1-.707 1.707zM3 13H1a1 1 0 1 1 0-2h2a1 1 0 0 1 0 2zm20 0h-2a1 1 0 1 1 0-2h2a1 1 0 1 1 0 2zM4.22 20.779a.999.999 0 0 1-.707-1.707l1.42-1.42a.999.999 0 1 1 1.414 1.414l-1.42 1.42a.993.993 0 0 1-.707.293zM18.359 6.64a.999.999 0 0 1-.707-1.707l1.42-1.42a.999.999 0 1 1 1.414 1.414l-1.42 1.42a.997.997 0 0 1-.707.293z"></path></svg></span>
<input type="checkbox" class="hidden" id="dark-toggle">
<label for="dark-toggle">
<div class="flex h-6 w-10 cursor-pointer items-center rounded-full bg-primary p-1">
<div class="toggle-circle h-4 w-4 rounded-full bg-white transition duration-300 ease-in-out">
</div>
</div>
</label>
<!-- -->
<span class="ml-2 text-sm"><svg role="img" class="dark:fill-white" width="20" viewBox="0 0 24 24" aria-labelledby="color-scheme-dark"><path d="M12.048 21.963c-.308 0-.618-.015-.93-.043-2.66-.246-5.064-1.513-6.771-3.567s-2.512-4.651-2.266-7.311a10.004 10.004 0 0 1 9.038-9.038 1 1 0 0 1 .896 1.589 6.008 6.008 0 0 0 1.258 8.392c2.078 1.536 5.055 1.536 7.133 0a1 1 0 0 1 1.591.896 9.951 9.951 0 0 1-9.949 9.082zM9.315 4.438a8.006 8.006 0 0 0-5.244 6.787 7.954 7.954 0 0 0 1.813 5.849 7.95 7.95 0 0 0 5.417 2.854 7.95 7.95 0 0 0 8.266-5.243 8.01 8.01 0 0 1-2.729.476 7.946 7.946 0 0 1-4.755-1.565C9.174 11.443 8.145 7.68 9.315 4.438z"></path></svg></span>
</div>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<!-- HOME -->
<section id="home" class="pt-28 dark:bg-dark">
<div class="container">
<div class="flex flex-wrap">
<div class="w-full self-start px-4 lg:w-1/2">
<div class=" relative lg:mt-3 lg:-left-20">
<img
src="dist/img/foto 1.png"
alt="Muhamad Nur Syami"
class="max-w-full t mx-auto relative z-10 "
/>
</div>
</div>
<div class="w-full self-center px-4 lg:w-1/2">
<h1 class="mt-10 text-base font-semibold text-primary dark:text-white md:text-xl">
<span class=" block font-bold text-dark hover:text-primary text-4xl mt-1 md:text-5xl dark:bg-clip-text dark:text-transparent dark:bg-gradient-to-r from-primary to-blue-500">
MUHAMAD NUR SYAMI</span
>
</h1>
<h2 class="font-medium text-secondary text-lg mt-5 lg:text-2xl">
FULL STACK DEVELOPER |
<span class="text-dark dark:text-white">RHCSA</span>
</h2>
<p class="mt-5 font-medium text-secondary mb-10 leading-relaxed">
Still learn tobe
<span class="text-dark font-semibold dark:text-white tracking-widest"> Software Engineer</span>
</p>
<blockquote class=" text-dark text-xl italic dark:text-white">"Go beyond your limits ! </blockquote>
<blockquote class=" text-dark text-xl italic dark:text-white tracking-wider">Right here, and right now ! ~ Yami Sukehiro"</blockquote>
</div>
</div>
</div>
</section>
<!-- About -->
<section id="about" class="pt-36 pb-48 dark:bg-dark">
<div class="container">
<div class="flex flex-wrap">
<div class="w-full px-4 mb-10 lg:w-1/2 lg:mt-44">
<h4 class="font-bold text-primary text-4xl mb-3">
Hi,
</h4>
<!-- <span class="bg-clip-text text-transparent bg-gradient-to-r from-primary to-blue-500">
Hello world
</span> -->
<h2 class="font-bold text-dark hover:text-primary text-3xl mb-5 max-w-md lg:text-4xl dark:text-white dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500">
I'm Muhamad Nur Syami
</h2>
<p class="font-medium text-base text-secondary max-w-xl lg:text-lg">
Undergraduate students who have experience developing Full stack Javascript Websites especially MERN, are very passionate about working with teams to learn and grow together and have a useful impact
</p>
<h3
class="font-semibold text-dark text-2xl mb-4 lg:text-3xl lg:pt-10 hover:text-primary mt-10 dark:text-white dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
>
Let's be friends
</h3>
<div class="flex items-center">
<!-- Instagram -->
<a
href="https://www.instagram.com/m.nursami18/"
target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 hover:border-primary hover:bg-primary hover:text-white text-slate-300"
>
<svg
class="fill-current"
width="20"
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Instagram</title>
<path
d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z"
/>
</svg>
</a>
<!-- twitter -->
<a
href="https://twitter.com/nursami18"
target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 hover:border-primary hover:bg-primary hover:text-white text-slate-300"
>
<svg
class="fill-current"
width="20"
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Twitter</title>
<path
d="M21.543 7.104c.015.211.015.423.015.636 0 6.507-4.954 14.01-14.01 14.01v-.003A13.94 13.94 0 0 1 0 19.539a9.88 9.88 0 0 0 7.287-2.041 4.93 4.93 0 0 1-4.6-3.42 4.916 4.916 0 0 0 2.223-.084A4.926 4.926 0 0 1 .96 9.167v-.062a4.887 4.887 0 0 0 2.235.616A4.928 4.928 0 0 1 1.67 3.148 13.98 13.98 0 0 0 11.82 8.292a4.929 4.929 0 0 1 8.39-4.49 9.868 9.868 0 0 0 3.128-1.196 4.941 4.941 0 0 1-2.165 2.724A9.828 9.828 0 0 0 24 4.555a10.019 10.019 0 0 1-2.457 2.549z"
/>
</svg>
</a>
<!-- linkedin -->
<a
href="https://www.linkedin.com/in/muhamad-nur-syami-93b979221/"
target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 hover:border-primary hover:bg-primary hover:text-white text-slate-300"
>
<svg
class="fill-current"
width="20"
role="img"
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>
<!-- GITHUB -->
<a
href="https://github.com/muhamadnursyami"
target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 hover:border-primary hover:bg-primary hover:text-white text-slate-300"
>
<svg class="fill-current"
width="20" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>
</a>
</div>
</div>
<div class="w-full md:px-4 lg:w-1/2 ">
<h3
class="font-semibold text-dark text-center text-2xl mb-4 lg:text-3xl lg:pt-10 dark:bg-clip-text dark:text-transparent dark:bg-gradient-to-r from-primary to-blue-500"
>
Tech Stacks
</h3>
<div class="bg-primary px-2 rounded-lg shadow-lg">
<h3 class="text-white text-center pt-5 pb-5 text-lg">Frontend</h3>
<div class="flex flex-wrap pb-5 justify-center md:px-4 lg:px-4">
<div class="mr-5"><svg class="fill-white"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>HTML5</title><path d="M1.5 0h21l-1.91 21.563L11.977 24l-8.564-2.438L1.5 0zm7.031 9.75l-.232-2.718 10.059.003.23-2.622L5.412 4.41l.698 8.01h9.126l-.326 3.426-2.91.804-2.955-.81-.188-2.11H6.248l.33 4.171L12 19.351l5.379-1.443.744-8.157H8.531z"/></svg>
<p class="text-base text-white text-center">HTML</p></div>
<div class="mr-5"><svg class="fill-white"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>CSS3</title><path d="M1.5 0h21l-1.91 21.563L11.977 24l-8.565-2.438L1.5 0zm17.09 4.413L5.41 4.41l.213 2.622 10.125.002-.255 2.716h-6.64l.24 2.573h6.182l-.366 3.523-2.91.804-2.956-.81-.188-2.11h-2.61l.29 3.855L12 19.288l5.373-1.53L18.59 4.414z"/></svg>
<p class="text-base text-white text-center">CSS</p></div>
<div class="mr-5"><svg class="fill-white"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>JavaScript</title><path d="M0 0h24v24H0V0zm22.034 18.276c-.175-1.095-.888-2.015-3.003-2.873-.736-.345-1.554-.585-1.797-1.14-.091-.33-.105-.51-.046-.705.15-.646.915-.84 1.515-.66.39.12.75.42.976.9 1.034-.676 1.034-.676 1.755-1.125-.27-.42-.404-.601-.586-.78-.63-.705-1.469-1.065-2.834-1.034l-.705.089c-.676.165-1.32.525-1.71 1.005-1.14 1.291-.811 3.541.569 4.471 1.365 1.02 3.361 1.244 3.616 2.205.24 1.17-.87 1.545-1.966 1.41-.811-.18-1.26-.586-1.755-1.336l-1.83 1.051c.21.48.45.689.81 1.109 1.74 1.756 6.09 1.666 6.871-1.004.029-.09.24-.705.074-1.65l.046.067zm-8.983-7.245h-2.248c0 1.938-.009 3.864-.009 5.805 0 1.232.063 2.363-.138 2.711-.33.689-1.18.601-1.566.48-.396-.196-.597-.466-.83-.855-.063-.105-.11-.196-.127-.196l-1.825 1.125c.305.63.75 1.172 1.324 1.517.855.51 2.004.675 3.207.405.783-.226 1.458-.691 1.811-1.411.51-.93.402-2.07.397-3.346.012-2.054 0-4.109 0-6.179l.004-.056z"/></svg>
<p class="text-base text-white text-center">JS</p></div>
<div class="mr-3 " ><svg class="fill-white ml-4"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>React</title><path d="M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236zm2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38-.318-.184-.688-.277-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44-.96-.236-2.006-.417-3.107-.534-.66-.905-1.345-1.727-2.035-2.447 1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442-1.107.117-2.154.298-3.113.538-.112-.49-.195-.964-.254-1.42-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05c.455.468.91.992 1.36 1.564-.44-.02-.89-.034-1.345-.034-.46 0-.915.01-1.36.034.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093.406.582.802 1.203 1.183 1.86.372.64.71 1.29 1.018 1.946-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87-.728.063-1.466.098-2.21.098-.74 0-1.477-.035-2.202-.093-.406-.582-.802-1.204-1.183-1.86-.372-.64-.71-1.29-1.018-1.946.303-.657.646-1.313 1.013-1.954.38-.66.773-1.286 1.18-1.868.728-.064 1.466-.098 2.21-.098zm-3.635.254c-.24.377-.48.763-.704 1.16-.225.39-.435.782-.635 1.174-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0c.695.103 1.365.23 2.006.387-.18.632-.405 1.282-.66 1.933-.2-.39-.41-.783-.64-1.174-.225-.392-.465-.774-.705-1.146zm3.063.675c.484.15.944.317 1.375.498 1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493-.28-.958-.646-1.956-1.1-2.98.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98-.45 1.017-.812 2.01-1.086 2.964-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474 0-.768 1.12-1.742 2.852-2.476.42-.18.88-.342 1.356-.494zm11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39.24-.375.48-.762.705-1.158.225-.39.435-.788.636-1.18zm-9.945.02c.2.392.41.783.64 1.175.23.39.465.772.705 1.143-.695-.102-1.365-.23-2.006-.386.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295-.22-.005-.406-.05-.553-.132-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64c.44.02.89.034 1.345.034.46 0 .915-.01 1.36-.034-.44.572-.895 1.095-1.345 1.565-.455-.47-.91-.993-1.36-1.565z"/></svg>
<p class="text-base text-white text-center">REACTJS</p></div>
<div class="mr-3 mt-3 md:mt-0 lg:mt-0" ><svg class="fill-white ml-3 "
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Next.js</title><path d="M11.5725 0c-.1763 0-.3098.0013-.3584.0067-.0516.0053-.2159.021-.3636.0328-3.4088.3073-6.6017 2.1463-8.624 4.9728C1.1004 6.584.3802 8.3666.1082 10.255c-.0962.659-.108.8537-.108 1.7474s.012 1.0884.108 1.7476c.652 4.506 3.8591 8.2919 8.2087 9.6945.7789.2511 1.6.4223 2.5337.5255.3636.04 1.9354.04 2.299 0 1.6117-.1783 2.9772-.577 4.3237-1.2643.2065-.1056.2464-.1337.2183-.1573-.0188-.0139-.8987-1.1938-1.9543-2.62l-1.919-2.592-2.4047-3.5583c-1.3231-1.9564-2.4117-3.556-2.4211-3.556-.0094-.0026-.0187 1.5787-.0235 3.509-.0067 3.3802-.0093 3.5162-.0516 3.596-.061.115-.108.1618-.2064.2134-.075.0374-.1408.0445-.495.0445h-.406l-.1078-.068a.4383.4383 0 01-.1572-.1712l-.0493-.1056.0053-4.703.0067-4.7054.0726-.0915c.0376-.0493.1174-.1125.1736-.143.0962-.047.1338-.0517.5396-.0517.4787 0 .5584.0187.6827.1547.0353.0377 1.3373 1.9987 2.895 4.3608a10760.433 10760.433 0 004.7344 7.1706l1.9002 2.8782.096-.0633c.8518-.5536 1.7525-1.3418 2.4657-2.1627 1.5179-1.7429 2.4963-3.868 2.8247-6.134.0961-.6591.1078-.854.1078-1.7475 0-.8937-.012-1.0884-.1078-1.7476-.6522-4.506-3.8592-8.2919-8.2087-9.6945-.7672-.2487-1.5836-.42-2.4985-.5232-.169-.0176-1.0835-.0366-1.6123-.037zm4.0685 7.217c.3473 0 .4082.0053.4857.047.1127.0562.204.1642.237.2767.0186.061.0234 1.3653.0186 4.3044l-.0067 4.2175-.7436-1.14-.7461-1.14v-3.066c0-1.982.0093-3.0963.0234-3.1502.0375-.1313.1196-.2346.2323-.2955.0961-.0494.1313-.054.4997-.054z"/></svg>
<p class="text-base text-white text-center">NEXTJS</p></div>
<div class="mr-3 mt-3 md:mt-0 lg:mt-0" ><svg class="fill-white ml-8"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>React</title><path d="M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236zm2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38-.318-.184-.688-.277-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44-.96-.236-2.006-.417-3.107-.534-.66-.905-1.345-1.727-2.035-2.447 1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442-1.107.117-2.154.298-3.113.538-.112-.49-.195-.964-.254-1.42-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05c.455.468.91.992 1.36 1.564-.44-.02-.89-.034-1.345-.034-.46 0-.915.01-1.36.034.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093.406.582.802 1.203 1.183 1.86.372.64.71 1.29 1.018 1.946-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87-.728.063-1.466.098-2.21.098-.74 0-1.477-.035-2.202-.093-.406-.582-.802-1.204-1.183-1.86-.372-.64-.71-1.29-1.018-1.946.303-.657.646-1.313 1.013-1.954.38-.66.773-1.286 1.18-1.868.728-.064 1.466-.098 2.21-.098zm-3.635.254c-.24.377-.48.763-.704 1.16-.225.39-.435.782-.635 1.174-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0c.695.103 1.365.23 2.006.387-.18.632-.405 1.282-.66 1.933-.2-.39-.41-.783-.64-1.174-.225-.392-.465-.774-.705-1.146zm3.063.675c.484.15.944.317 1.375.498 1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493-.28-.958-.646-1.956-1.1-2.98.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98-.45 1.017-.812 2.01-1.086 2.964-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474 0-.768 1.12-1.742 2.852-2.476.42-.18.88-.342 1.356-.494zm11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39.24-.375.48-.762.705-1.158.225-.39.435-.788.636-1.18zm-9.945.02c.2.392.41.783.64 1.175.23.39.465.772.705 1.143-.695-.102-1.365-.23-2.006-.386.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295-.22-.005-.406-.05-.553-.132-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64c.44.02.89.034 1.345.034.46 0 .915-.01 1.36-.034-.44.572-.895 1.095-1.345 1.565-.455-.47-.91-.993-1.36-1.565z"/></svg>
<p class="text-base text-white text-center">REACTNATIVE</p></div>
<div class="mr-3 mt-3" ><svg class="fill-white ml-3"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Redux</title><path d="M16.634 16.504c.87-.075 1.543-.84 1.5-1.754-.047-.914-.796-1.648-1.709-1.648h-.061a1.71 1.71 0 00-1.648 1.769c.03.479.226.869.494 1.153-1.048 2.038-2.621 3.536-5.005 4.795-1.603.838-3.296 1.154-4.944.93-1.378-.195-2.456-.81-3.116-1.799-.988-1.499-1.078-3.116-.255-4.734.6-1.17 1.499-2.023 2.099-2.443a9.96 9.96 0 01-.42-1.543C-.868 14.408-.416 18.752.932 20.805c1.004 1.498 3.057 2.456 5.304 2.456.6 0 1.23-.044 1.843-.194 3.897-.749 6.848-3.086 8.541-6.532zm5.348-3.746c-2.32-2.728-5.738-4.226-9.634-4.226h-.51c-.253-.554-.837-.899-1.498-.899h-.045c-.943 0-1.678.81-1.647 1.753.03.898.794 1.648 1.708 1.648h.074a1.69 1.69 0 001.499-1.049h.555c2.309 0 4.495.674 6.488 1.992 1.527 1.005 2.622 2.323 3.237 3.897.538 1.288.509 2.547-.045 3.597-.855 1.647-2.294 2.517-4.196 2.517-1.199 0-2.367-.375-2.967-.644-.36.298-.96.793-1.394 1.093 1.318.598 2.652.943 3.94.943 2.922 0 5.094-1.647 5.919-3.236.898-1.798.824-4.824-1.47-7.416zM6.49 17.042c.03.899.793 1.648 1.708 1.648h.06a1.688 1.688 0 001.648-1.768c0-.9-.779-1.647-1.693-1.647h-.06c-.06 0-.15 0-.226.029-1.243-2.098-1.768-4.347-1.572-6.772.12-1.828.72-3.417 1.797-4.735.9-1.124 2.593-1.68 3.747-1.708 3.236-.061 4.585 3.971 4.689 5.574l1.498.45C17.741 3.197 14.686.62 11.764.62 9.02.62 6.49 2.613 5.47 5.535 4.077 9.43 4.991 13.177 6.7 16.174c-.15.195-.24.539-.21.868z"/></svg>
<p class="text-base text-white text-center">REDUX</p></div>
<div class="mr-3 mt-3" ><svg class="fill-white ml-10"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Bootstrap</title><path d="M11.77 11.24H9.956V8.202h2.152c1.17 0 1.834.522 1.834 1.466 0 1.008-.773 1.572-2.174 1.572zm.324 1.206H9.957v3.348h2.231c1.459 0 2.232-.585 2.232-1.685s-.795-1.663-2.326-1.663zM24 11.39v1.218c-1.128.108-1.817.944-2.226 2.268-.407 1.319-.463 2.937-.42 4.186.045 1.3-.968 2.5-2.337 2.5H4.985c-1.37 0-2.383-1.2-2.337-2.5.043-1.249-.013-2.867-.42-4.186-.41-1.324-1.1-2.16-2.228-2.268V11.39c1.128-.108 1.819-.944 2.227-2.268.408-1.319.464-2.937.42-4.186-.045-1.3.968-2.5 2.338-2.5h14.032c1.37 0 2.382 1.2 2.337 2.5-.043 1.249.013 2.867.42 4.186.409 1.324 1.098 2.16 2.226 2.268zm-7.927 2.817c0-1.354-.953-2.333-2.368-2.488v-.057c1.04-.169 1.856-1.135 1.856-2.213 0-1.537-1.213-2.538-3.062-2.538h-4.16v10.172h4.181c2.218 0 3.553-1.086 3.553-2.876z"/></svg>
<p class="text-base text-white text-center">BOOTSTRAPCSS</p></div>
<div class="mr-3 mt-3" ><svg class="fill-white ml-7"
width="40" role="img" 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>
<p class="text-base text-white text-center">TAILWINDCSS</p></div>
</div>
<h3 class="text-white text-center pt-5 pb-5 text-lg">Backend</h3>
<div class="flex flex-wrap pb-5 justify-center md:px-4 lg:px-4">
<div class="mr-5"><svg class="fill-white ml-3"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Node.js</title><path d="M11.998,24c-0.321,0-0.641-0.084-0.922-0.247l-2.936-1.737c-0.438-0.245-0.224-0.332-0.08-0.383 c0.585-0.203,0.703-0.25,1.328-0.604c0.065-0.037,0.151-0.023,0.218,0.017l2.256,1.339c0.082,0.045,0.197,0.045,0.272,0l8.795-5.076 c0.082-0.047,0.134-0.141,0.134-0.238V6.921c0-0.099-0.053-0.192-0.137-0.242l-8.791-5.072c-0.081-0.047-0.189-0.047-0.271,0 L3.075,6.68C2.99,6.729,2.936,6.825,2.936,6.921v10.15c0,0.097,0.054,0.189,0.139,0.235l2.409,1.392 c1.307,0.654,2.108-0.116,2.108-0.89V7.787c0-0.142,0.114-0.253,0.256-0.253h1.115c0.139,0,0.255,0.112,0.255,0.253v10.021 c0,1.745-0.95,2.745-2.604,2.745c-0.508,0-0.909,0-2.026-0.551L2.28,18.675c-0.57-0.329-0.922-0.945-0.922-1.604V6.921 c0-0.659,0.353-1.275,0.922-1.603l8.795-5.082c0.557-0.315,1.296-0.315,1.848,0l8.794,5.082c0.57,0.329,0.924,0.944,0.924,1.603 v10.15c0,0.659-0.354,1.273-0.924,1.604l-8.794,5.078C12.643,23.916,12.324,24,11.998,24z M19.099,13.993 c0-1.9-1.284-2.406-3.987-2.763c-2.731-0.361-3.009-0.548-3.009-1.187c0-0.528,0.235-1.233,2.258-1.233 c1.807,0,2.473,0.389,2.747,1.607c0.024,0.115,0.129,0.199,0.247,0.199h1.141c0.071,0,0.138-0.031,0.186-0.081 c0.048-0.054,0.074-0.123,0.067-0.196c-0.177-2.098-1.571-3.076-4.388-3.076c-2.508,0-4.004,1.058-4.004,2.833 c0,1.925,1.488,2.457,3.895,2.695c2.88,0.282,3.103,0.703,3.103,1.269c0,0.983-0.789,1.402-2.642,1.402 c-2.327,0-2.839-0.584-3.011-1.742c-0.02-0.124-0.126-0.215-0.253-0.215h-1.137c-0.141,0-0.254,0.112-0.254,0.253 c0,1.482,0.806,3.248,4.655,3.248C17.501,17.007,19.099,15.91,19.099,13.993z"/></svg>
<p class="text-base text-white text-center">NODEJS</p></div>
<div class="mr-5"><svg class="fill-white ml-6"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Express</title><path d="M24 18.588a1.529 1.529 0 01-1.895-.72l-3.45-4.771-.5-.667-4.003 5.444a1.466 1.466 0 01-1.802.708l5.158-6.92-4.798-6.251a1.595 1.595 0 011.9.666l3.576 4.83 3.596-4.81a1.435 1.435 0 011.788-.668L21.708 7.9l-2.522 3.283a.666.666 0 000 .994l4.804 6.412zM.002 11.576l.42-2.075c1.154-4.103 5.858-5.81 9.094-3.27 1.895 1.489 2.368 3.597 2.275 5.973H1.116C.943 16.447 4.005 19.009 7.92 17.7a4.078 4.078 0 002.582-2.876c.207-.666.548-.78 1.174-.588a5.417 5.417 0 01-2.589 3.957 6.272 6.272 0 01-7.306-.933 6.575 6.575 0 01-1.64-3.858c0-.235-.08-.455-.134-.666A88.33 88.33 0 010 11.577zm1.127-.286h9.654c-.06-3.076-2.001-5.258-4.59-5.278-2.882-.04-4.944 2.094-5.071 5.264z"/></svg>
<p class="text-base text-white text-center">EXPRESSJS</p></div>
<div class="mr-5 mt-3 md:mt-0 lg:mt-0"><svg class="fill-white ml-11"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Mongoose</title><path d="M14.014 7.37a9.162 9.162 0 0 0-.808.025c-.218.017-.434.072-.65.11.229.118.456.213.68.315.225.103.436.232.629.387-.253-.097-.499-.208-.752-.298a8.046 8.046 0 0 0-1.624-.421c-.273-.037-.546-.073-.819.005-.276.078-.354.18-.38.458-.04.46.098.887.281 1.298a4.432 4.432 0 0 0 1.185 1.573c.391.335.825.598 1.305.787.136.053.274.103.411.155l-.009.032c-.263-.072-.532-.126-.787-.22a4.14 4.14 0 0 1-1.222-.73 4.16 4.16 0 0 1-1.007-1.22 3.43 3.43 0 0 1-.43-1.609l-.012.005C4.891 7.488.402 11.595.035 11.94l-.034.014c-.002.005 0 .01.003.016L0 11.974l.005-.002c.004.008.01.016.013.024.087-.019.173-.042.26-.054l.069-.01c.324-.115.655-.205.997-.253.484-.069.985-.159 1.48-.156.468.002.943.074 1.402.153.129.022.255.052.38.087.335.075.65.21.933.391l.06.03c.403.19.758.47 1.038.811.052.057.141.116.187.178.096.114.142.236.303.363v-1.737h2.01l.939 1.733.942-1.733h2.07v3.357l.343-.226s.375-1 2.116-1.14l1.996-.064c-.308-.637-.307-.637-.159-.83.147-.19 1.28-.314 1.48-.433l2.912-.588c.007-.022.015.012.03.007.072-.022.147-.037.25-.061l.66-.16c.042-.025.093-.034.14-.05.308-.107.577-.245.726-.573.145-.319.339-.616.41-.967.022-.111.003-.208-.078-.288-.097-.096-.222-.138-.35-.171-.421-.173-.84-.35-1.264-.513-.261-.101-.529-.185-.795-.27a30.574 30.574 0 0 0-.794-.243c-.244-.072-.49-.138-.736-.205-.24-.066-.48-.133-.72-.192-.282-.07-.565-.13-.847-.195-.215-.05-.428-.102-.644-.146-.234-.047-.47-.089-.706-.13-.302-.053-.602-.112-.905-.153-.366-.05-.734-.082-1.101-.125-.345-.04-.691-.065-1.038-.07zm-3.303.767a.154.154 0 0 1 .056.007c.42.13.83.277 1.216.491.365.203.695.45.979.756.012.013.02.028.036.05l-.645-.293-.021.026.37.551-.022.022a1.986 1.986 0 0 0-.665-.322l-.02.02.633.74-.416-.136-.017.02c.163.27.376.505.58.775-.354-.2-.665-.42-.956-.669a4.488 4.488 0 0 1-1.01-1.185c-.107-.19-.201-.385-.222-.606a.468.468 0 0 1 .011-.15.123.123 0 0 1 .113-.097zm5.424.668c.154.002.311-.006.464.015.278.037.555.092.832.14.158.027.317.052.474.086.297.064.594.133.89.2.196.046.392.092.587.14l-.329.161c-.365.027-.731.055-1.097.057a3.268 3.268 0 0 1-.675-.074c-.28-.058-.514-.196-.652-.466-.02-.04-.09-.063-.14-.078-.18-.054-.362-.1-.544-.168.063-.005.126-.014.19-.013zm3.223 2.635.005.02c-.08.022-.16.042-.239.067-.455.14-.916.266-1.363.428-.28.101-.544.25-.81.388-.233.119-.315.322-.287.575.019.162.04.324.055.488a1.786 1.786 0 0 1-.288-.701c-.035-.169.058-.273.18-.365.238-.178.496-.318.777-.41.35-.117.702-.233 1.059-.325.251-.065.513-.09.77-.133.048-.008.094-.021.141-.032zM9.141 13.955v2.676h1.869l.064-.066v-2.61l-.97 1.495z"/></svg>
<p class="text-base text-white text-center">MOONGOSEORM</p></div>
<div class="mr-5 mt-3 md:mt-0 lg:mt-0"><svg class="fill-white ml-6"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>MongoDB</title><path d="M17.193 9.555c-1.264-5.58-4.252-7.414-4.573-8.115-.28-.394-.53-.954-.735-1.44-.036.495-.055.685-.523 1.184-.723.566-4.438 3.682-4.74 10.02-.282 5.912 4.27 9.435 4.888 9.884l.07.05A73.49 73.49 0 0111.91 24h.481c.114-1.032.284-2.056.51-3.07.417-.296.604-.463.85-.693a11.342 11.342 0 003.639-8.464c.01-.814-.103-1.662-.197-2.218zm-5.336 8.195s0-8.291.275-8.29c.213 0 .49 10.695.49 10.695-.381-.045-.765-1.76-.765-2.405z"/></svg>
<p class="text-base text-white text-center">MONGODB</p></div>
</div>
<h3 class="text-white text-center pt-5 pb-5 text-lg">Others</h3>
<div class="flex flex-wrap pb-5 justify-center md:px-4 lg:px-4">
<div class="mr-5"><svg class="fill-white ml-1"
width="40" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Linux</title><path d="M12.504 0c-.155 0-.315.008-.48.021-4.226.333-3.105 4.807-3.17 6.298-.076 1.092-.3 1.953-1.05 3.02-.885 1.051-2.127 2.75-2.716 4.521-.278.832-.41 1.684-.287 2.489a.424.424 0 00-.11.135c-.26.268-.45.6-.663.839-.199.199-.485.267-.797.4-.313.136-.658.269-.864.68-.09.189-.136.394-.132.602 0 .199.027.4.055.536.058.399.116.728.04.97-.249.68-.28 1.145-.106 1.484.174.334.535.47.94.601.81.2 1.91.135 2.774.6.926.466 1.866.67 2.616.47.526-.116.97-.464 1.208-.946.587-.003 1.23-.269 2.26-.334.699-.058 1.574.267 2.577.2.025.134.063.198.114.333l.003.003c.391.778 1.113 1.132 1.884 1.071.771-.06 1.592-.536 2.257-1.306.631-.765 1.683-1.084 2.378-1.503.348-.199.629-.469.649-.853.023-.4-.2-.811-.714-1.376v-.097l-.003-.003c-.17-.2-.25-.535-.338-.926-.085-.401-.182-.786-.492-1.046h-.003c-.059-.054-.123-.067-.188-.135a.357.357 0 00-.19-.064c.431-1.278.264-2.55-.173-3.694-.533-1.41-1.465-2.638-2.175-3.483-.796-1.005-1.576-1.957-1.56-3.368.026-2.152.236-6.133-3.544-6.139zm.529 3.405h.013c.213 0 .396.062.584.198.19.135.33.332.438.533.105.259.158.459.166.724 0-.02.006-.04.006-.06v.105a.086.086 0 01-.004-.021l-.004-.024a1.807 1.807 0 01-.15.706.953.953 0 01-.213.335.71.71 0 00-.088-.042c-.104-.045-.198-.064-.284-.133a1.312 1.312 0 00-.22-.066c.05-.06.146-.133.183-.198.053-.128.082-.264.088-.402v-.02a1.21 1.21 0 00-.061-.4c-.045-.134-.101-.2-.183-.333-.084-.066-.167-.132-.267-.132h-.016c-.093 0-.176.03-.262.132a.8.8 0 00-.205.334 1.18 1.18 0 00-.09.4v.019c.002.089.008.179.02.267-.193-.067-.438-.135-.607-.202a1.635 1.635 0 01-.018-.2v-.02a1.772 1.772 0 01.15-.768c.082-.22.232-.406.43-.533a.985.985 0 01.594-.2zm-2.962.059h.036c.142 0 .27.048.399.135.146.129.264.288.344.465.09.199.14.4.153.667v.004c.007.134.006.2-.002.266v.08c-.03.007-.056.018-.083.024-.152.055-.274.135-.393.2.012-.09.013-.18.003-.267v-.015c-.012-.133-.04-.2-.082-.333a.613.613 0 00-.166-.267.248.248 0 00-.183-.064h-.021c-.071.006-.13.04-.186.132a.552.552 0 00-.12.27.944.944 0 00-.023.33v.015c.012.135.037.2.08.334.046.134.098.2.166.268.01.009.02.018.034.024-.07.057-.117.07-.176.136a.304.304 0 01-.131.068 2.62 2.62 0 01-.275-.402 1.772 1.772 0 01-.155-.667 1.759 1.759 0 01.08-.668 1.43 1.43 0 01.283-.535c.128-.133.26-.2.418-.2zm1.37 1.706c.332 0 .733.065 1.216.399.293.2.523.269 1.052.468h.003c.255.136.405.266.478.399v-.131a.571.571 0 01.016.47c-.123.31-.516.643-1.063.842v.002c-.268.135-.501.333-.775.465-.276.135-.588.292-1.012.267a1.139 1.139 0 01-.448-.067 3.566 3.566 0 01-.322-.198c-.195-.135-.363-.332-.612-.465v-.005h-.005c-.4-.246-.616-.512-.686-.71-.07-.268-.005-.47.193-.6.224-.135.38-.271.483-.336.104-.074.143-.102.176-.131h.002v-.003c.169-.202.436-.47.839-.601.139-.036.294-.065.466-.065zm2.8 2.142c.358 1.417 1.196 3.475 1.735 4.473.286.534.855 1.659 1.102 3.024.156-.005.33.018.513.064.646-1.671-.546-3.467-1.089-3.966-.22-.2-.232-.335-.123-.335.59.534 1.365 1.572 1.646 2.757.13.535.16 1.104.021 1.67.067.028.135.06.205.067 1.032.534 1.413.938 1.23 1.537v-.043c-.06-.003-.12 0-.18 0h-.016c.151-.467-.182-.825-1.065-1.224-.915-.4-1.646-.336-1.77.465-.008.043-.013.066-.018.135-.068.023-.139.053-.209.064-.43.268-.662.669-.793 1.187-.13.533-.17 1.156-.205 1.869v.003c-.02.334-.17.838-.319 1.35-1.5 1.072-3.58 1.538-5.348.334a2.645 2.645 0 00-.402-.533 1.45 1.45 0 00-.275-.333c.182 0 .338-.03.465-.067a.615.615 0 00.314-.334c.108-.267 0-.697-.345-1.163-.345-.467-.931-.995-1.788-1.521-.63-.4-.986-.87-1.15-1.396-.165-.534-.143-1.085-.015-1.645.245-1.07.873-2.11 1.274-2.763.107-.065.037.135-.408.974-.396.751-1.14 2.497-.122 3.854a8.123 8.123 0 01.647-2.876c.564-1.278 1.743-3.504 1.836-5.268.048.036.217.135.289.202.218.133.38.333.59.465.21.201.477.335.876.335.039.003.075.006.11.006.412 0 .73-.134.997-.268.29-.134.52-.334.74-.4h.005c.467-.135.835-.402 1.044-.7zm2.185 8.958c.037.6.343 1.245.882 1.377.588.134 1.434-.333 1.791-.765l.211-.01c.315-.007.577.01.847.268l.003.003c.208.199.305.53.391.876.085.4.154.78.409 1.066.486.527.645.906.636 1.14l.003-.007v.018l-.003-.012c-.015.262-.185.396-.498.595-.63.401-1.746.712-2.457 1.57-.618.737-1.37 1.14-2.036 1.191-.664.053-1.237-.2-1.574-.898l-.005-.003c-.21-.4-.12-1.025.056-1.69.176-.668.428-1.344.463-1.897.037-.714.076-1.335.195-1.814.12-.465.308-.797.641-.984l.045-.022zm-10.814.049h.01c.053 0 .105.005.157.014.376.055.706.333 1.023.752l.91 1.664.003.003c.243.533.754 1.064 1.189 1.637.434.598.77 1.131.729 1.57v.006c-.057.744-.48 1.148-1.125 1.294-.645.135-1.52.002-2.395-.464-.968-.536-2.118-.469-2.857-.602-.369-.066-.61-.2-.723-.4-.11-.2-.113-.602.123-1.23v-.004l.002-.003c.117-.334.03-.752-.027-1.118-.055-.401-.083-.71.043-.94.16-.334.396-.4.69-.533.294-.135.64-.202.915-.47h.002v-.002c.256-.268.445-.601.668-.838.19-.201.38-.336.663-.336zm7.159-9.074c-.435.201-.945.535-1.488.535-.542 0-.97-.267-1.28-.466-.154-.134-.28-.268-.373-.335-.164-.134-.144-.333-.074-.333.109.016.129.134.199.2.096.066.215.2.36.333.292.2.68.467 1.167.467.485 0 1.053-.267 1.398-.466.195-.135.445-.334.648-.467.156-.136.149-.267.279-.267.128.016.034.134-.147.332a8.097 8.097 0 01-.69.468zm-1.082-1.583V5.64c-.006-.02.013-.042.029-.05.074-.043.18-.027.26.004.063 0 .16.067.15.135-.006.049-.085.066-.135.066-.055 0-.092-.043-.141-.068-.052-.018-.146-.008-.163-.065zm-.551 0c-.02.058-.113.049-.166.066-.047.025-.086.068-.14.068-.05 0-.13-.02-.136-.068-.01-.066.088-.133.15-.133.08-.031.184-.047.259-.005.019.009.036.03.03.05v.02h.003z"/></svg>
<p class="text-base text-white text-center">LINUX</p></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Portofolio -->
<section id="portofolio" class="pt-24 pb-16 bg-slate-100 dark:bg-slate-800">
<div class="container">
<div class="w-full md:px-2">
<div class="max-w-xl mx-auto text-center mb-16">
<h4 class="font-semibold text-3xl md:text-5xl mb-2 bg-clip-text text-transparent bg-gradient-to-r from-primary to-blue-500">Portofolio</h4>
<h2 class="font-bold text-dark text-xl mb-4 md:text-2xl dark:text-white">
My Project
</h2>
</div>
<div class="w-full flex flex-wrap justify-center">
<div class="w-full md:px-4 md:w-1/2 ">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-900 ">
<img src="dist/portofolio/1. MERN SEMINA.PNG" alt="foto1" class="w-full" />
<div class="py-8 px-6">
<h3 >
<a
target="_blank"
href="https://github.com/muhamadnursyami/landingpage-semina-mern"
class="block font-semibold text-xl mb-3 text-dark truncate dark:text-white hover:text-primary dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
>WEBSITE EVENT (2023) </a
>
</h3>
<p class="font-medium text-secondary text-base mb-6">
Event Web Application Development.
The application provides information about events and purchases event tickets along with creating an account with Authentication using an otp sent by email
from BuildWith Angga course BOOTCAMP MERN 2022
</p>
<p class="font-medium text-secondary text-base mb-6">
Technology: React JS, Redux, Next JS, BoostrapCSS, Node JS, Express JS, MongoDB.
</p>
<a
target="_blank"
href="https://github.com/muhamadnursyami/landingpage-semina-mern"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>REPO</a
>
</div>
</div>
</div>
<div class="w-full md:px-4 md:w-1/2 ">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-900 ">
<img src="dist/portofolio/2. CHATBOT TEMPAT WISATA.PNG" alt="foto1" class="w-full" />
<div class="py-8 px-6">
<h3 >
<a
target="_blank"
href="https://github.com/muhamadnursyami/chatbot-tempatwisata"
class="block font-semibold text-xl mb-3 text-dark truncate dark:text-white hover:text-primary dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
>WEBSITE CHATBOT TEMPAT WISATA (2023) </a
>
</h3>
<p class="font-medium text-secondary text-base mb-6">
Development of tourist attractions chatbot web applications.
The purpose of this website is to provide information about visitors looking for recommendations for tourist attractions on Bintan Island as well as the implementation of artificial intelligence using the Watson Assistant and Watson Discovery from IBM.
</p>
<p class="font-medium text-secondary text-base mb-6">
Technology: HTML, CSS, Waston Discovery, Waston Assistant
</p>
<a
target="_blank"
href="https://github.com/muhamadnursyami/chatbot-tempatwisata"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>REPO</a
>
<a
target="_blank"
href="https://muhamad-nur-syami-tour-bot.vercel.app/"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>DEMO</a
>
</div>
</div>
</div>
<div class="w-full md:px-4 md:w-1/2 ">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-900 ">
<img src="dist/portofolio/3. FligtGoApp.png" alt="foto1" class="w-full" />
<div class="py-8 px-6">
<h3 >
<a
target="_blank"
href="https://github.com/muhamadnursyami/fronted-flightgo-mobileApps"
class="block font-semibold text-xl mb-3 text-dark truncate dark:text-white hover:text-primary dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
>FlightGo MobileApps (2023) </a
>
</h3>
<p class="font-medium text-secondary text-base mb-6">
Flight Go Mobile App Application Development.
This mobile application aims to make it easier for airplane passengers to buy tickets online, users can create accounts, edit profiles, buy tickets, and view order status.
</p>
<p class="font-medium text-secondary text-base mb-6">
Technology: React Native
</p>
<a
target="_blank"
href="https://github.com/muhamadnursyami/fronted-flightgo-mobileApps"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>REPO</a
>
</div>
</div>
</div>
<div class="w-full md:px-4 md:w-1/2 ">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-900 ">
<img src="dist/portofolio/6.Portofolio Tailwind CSS.PNG" alt="foto1" class="w-full" />
<div class="py-8 px-6">
<h3 >
<a
target="_blank"
href="https://github.com/muhamadnursyami/scanqrcode-kotlin-mobileApps"
class="block font-semibold text-xl mb-3 text-dark truncate dark:text-white hover:text-primary dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
>WEB PORTOFOLIO TAILWINDCSS(2023) </a
>
</h3>
<p class="font-medium text-secondary text-base mb-6">
WEBSITE MY PORTOFOLIO TAILWINDCSS
</p>
<p class="font-medium text-secondary text-base mb-6">
Technology: TAILWINDCSS
</p>
<a
target="_blank"
href="https://github.com/muhamadnursyami/scanqrcode-kotlin-mobileApps"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>REPO</a
>
<a
target="_blank"
href="https://github.com/muhamadnursyami/scanqrcode-kotlin-mobileApps"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>DEMO</a
>
</div>
</div>
</div>
<div class="w-full md:px-4 md:w-1/2 ">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-900 ">
<img src="dist/portofolio/4. WEBSITEFILM JS.PNG" alt="foto1" class="w-full" />
<div class="py-8 px-6">
<h3 >
<a
target="_blank"
href="https://github.com/muhamadnursyami/websitefilm-js"
class="block font-semibold text-xl mb-3 text-dark truncate dark:text-white hover:text-primary dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
>WEBSITE FILM (2022) </a
>
</h3>
<p class="font-medium text-secondary text-base mb-6">
Film website application development.
This website aims to provide information about films, actors in a film, year of film and much more
</p>
<p class="font-medium text-secondary text-base mb-6">
Technology: HTML, CSS, BOOSTRAP.
</p>
<a
target="_blank"
href="https://github.com/muhamadnursyami/websitefilm-js"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>REPO</a
>
<a
target="_blank"
href="https://muhamadnursyami.github.io/websitefilm-js/"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>DEMO</a
>
</div>
</div>
</div>
<div class="w-full md:px-4 md:w-1/2 ">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-900 ">
<img src="dist/portofolio/5. ScanQRCodeApp.png" alt="foto1" class="w-full" />
<div class="py-8 px-6">
<h3 >
<a
target="_blank"
href="https://github.com/muhamadnursyami/scanqrcode-kotlin-mobileApps"
class="block font-semibold text-xl mb-3 text-dark truncate dark:text-white hover:text-primary dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
>ScanQRCodeApp (2022) </a
>
</h3>
<p class="font-medium text-secondary text-base mb-6">
Film website application development.
This website aims to provide information about films, actors in a film, year of film and much more
</p>
<p class="font-medium text-secondary text-base mb-6">
Technology: Kotlin
</p>
<a
target="_blank"
href="https://github.com/muhamadnursyami/scanqrcode-kotlin-mobileApps"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>REPO</a
>
</div>
</div>
</div>
<div class="w-full md:px-4 md:w-1/2 ">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-900 ">
<img src="dist/portofolio/7. TodoList React Js.PNG" alt="foto1" class="w-full" />
<div class="py-8 px-6">
<h3 >
<a
target="_blank"
href="https://github.com/muhamadnursyami/todolist-reactjs"
class="block font-semibold text-xl mb-3 text-dark truncate dark:text-white hover:text-primary dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
>TODOLIST REACTJS (2022) </a
>
</h3>
<p class="font-medium text-secondary text-base mb-6">
WEBSITE TODOLIST REACT JS
</p>
<p class="font-medium text-secondary text-base mb-6">
Technology: REACTJS
</p>
<a
target="_blank"
href="https://github.com/muhamadnursyami/todolist-reactjs"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>REPO</a
>
<a
target="_blank"
href="https://todolist-drab-kappa.vercel.app/"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>DEMO</a
>
</div>
</div>
</div>
<div class="w-full md:px-4 md:w-1/2 ">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-900 ">
<img src="dist/portofolio/8.Portofolio Boostrap.PNG" alt="foto1" class="w-full" />
<div class="py-8 px-6">
<h3 >
<a
target="_blank"
href="https://github.com/muhamadnursyami/portofolio-boostrap-v1"
class="block font-semibold text-xl mb-3 text-dark truncate dark:text-white hover:text-primary dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
>WEB PORTOFOLIO BOOTSTRAP(2021) </a
>
</h3>
<p class="font-medium text-secondary text-base mb-6">
WEBSITE PORTOFOLIO BOOSTRAP
</p>
<p class="font-medium text-secondary text-base mb-6">
Technology: HTML, CSS, BOOTSTRAPCSS3
</p>
<a
target="_blank"
href="https://github.com/muhamadnursyami/portofolio-boostrap-v1"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>REPO</a
>
<a
target="_blank"
href="https://muhamadnursyami.github.io/portofolio-boostrap-v1/"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>DEMO</a
>
</div>
</div>
</div>
</div>
<div class="max-w-xl mx-auto text-center mb-10 mt-10">
<h2 class="font-bold text-dark text-xl mb-4 md:text-2xl dark:text-white">
Other Project
</h2>
</div>
<div class="w-full flex flex-wrap justify-center">
<div class="w-full md:px-4 md:w-1/2 ">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-900 ">
<div class="py-8 px-6">
<h3 >
<a
target="_blank"
href="https://github.com/muhamadnursyami/server-semina-mern"
class="block font-semibold text-xl mb-3 text-dark truncate dark:text-white hover:text-primary dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
>BACKEND WEBSITE EVENT (2023) </a
>
</h3>
<p class="font-medium text-secondary text-base mb-6">
Event Web Application Development.
The application provides information about events and purchases event tickets along with creating an account with Authentication using an otp sent by email
from BuildWith Angga course BOOTCAMP MERN 2022
</p>
<p class="font-medium text-secondary text-base mb-6">
Technology:Node JS, Express JS, MongoDB.
</p>
<a
target="_blank"
href="https://github.com/muhamadnursyami/server-semina-mern"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>REPO</a
>
</div>
</div>
</div>
<div class="w-full md:px-4 md:w-1/2 ">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-900 ">
<div class="py-8 px-6">
<h3 >
<a
target="_blank"
href="https://github.com/muhamadnursyami/be-sicerdik-v3mern"
class="block font-semibold text-xl mb-3 text-dark truncate dark:text-white hover:text-primary dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
>BACKEND WEBSITE SICERDIK (2022) </a
>
</h3>
<p class="font-medium text-secondary text-base mb-6">
The development of the smart website as a service to help the community
</p>
<p class="font-medium text-secondary text-base mb-6">
Technology:Node JS, Express JS, MongoDB.
</p>
<a
target="_blank"
href="https://github.com/muhamadnursyami/be-sicerdik-v3mern"
class="font-medium text-sm text-white bg-primary py-2 px-4 rounded-lg hover:opacity-80"
>REPO</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ACHIEVEMENTS -->
<section id="achievements" class="pt-36 pb-32 bg-slate-100 dark:bg-dark">
<div class="container">
<div class="w-full px-4">
<div class="max-w-xl mx-auto text-center mb-16">
<h4 class="font-semibold text-3xl md:text-5xl mb-2 bg-clip-text text-transparent bg-gradient-to-r from-primary to-blue-500">Achievements</h4>
</div>
</div>
<div class="flex flex-wrap justify-center">
<div class="w-full px-4 lg:w-1/2 xl:w-1/3">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-800 dark:bg-opacity-80">
<img
src="dist/achievements/1.Sertifikat JS PZN.jpg"
alt="Sertifkat Javascript"
class="w-full"
/>
<div class="py-2 px-4 ">
<h3>
<a
target="_blank"
href="https://www.udemy.com/certificate/UC-12a3e123-f9c4-4275-a2ea-b314dcb85904/"
class="block text-center font-semibold text-xl mb-3 text-dark hover:text-primary dark:text-white dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
> Certificate Course Javascript Programmer Zaman Now</a
>
</h3>
</div>
</div>
</div>
<div class="w-full px-4 lg:w-1/2 xl:w-1/3">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-800 dark:bg-opacity-80">
<img
src="dist/achievements/3. sertifikat bootcamp mern 2022.PNG"
alt="Sertifkat Bootcamp mern"
class="w-full"
/>
<div class="py-2 px-4 ">
<h3>
<a
target="_blank"
href="https://www.credly.com/earner/earned/badge/dc700bdb-e8b7-4789-8993-2bb70422942b"
class="block text-center font-semibold text-xl mb-3 text-dark hover:text-primary dark:text-white dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
> Certificate BOOTCAMP MERN 2022</a
>
</h3>
</div>
</div>
</div>
<div class="w-full px-4 lg:w-1/2 xl:w-1/3">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-800 dark:bg-opacity-80">
<img
src="dist/achievements/2. SERTIFIKAT RHCSA.PNG"
alt="Sertifkat Javascript"
class="w-full"
/>
<div class="py-2 px-4 ">
<h3>
<a
target="_blank"
href="https://www.credly.com/earner/earned/badge/dc700bdb-e8b7-4789-8993-2bb70422942b"
class="block text-center font-semibold text-xl mb-3 text-dark hover:text-primary dark:text-white dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
> Certificate RHCSA Redhat Linux System Administrator</a
>
</h3>
</div>
</div>
</div>
<div class="w-full px-4 lg:w-1/2 xl:w-1/3">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-800 dark:bg-opacity-80">
<img
src="dist/achievements/4. sertifikat gemastik.PNG"
alt="Sertifkat Gemastik"
class="w-full"
/>
<div class="py-2 px-4 ">
<h3>
<a
target="_blank"
href="https://www.credly.com/earner/earned/badge/dc700bdb-e8b7-4789-8993-2bb70422942b"
class="block text-center font-semibold text-xl mb-3 text-dark hover:text-primary dark:text-white dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
> Certificate Gemastik</a
>
</h3>
</div>
</div>
</div>
<div class="w-full px-4 lg:w-1/2 xl:w-1/3">
<div class="bg-white rounded-lg shadow-lg mb-10 overflow-hidden dark:bg-slate-800 dark:bg-opacity-80">
<img
src="dist/achievements/5. sertifikat MSIB IL.PNG"
alt="Sertifkat MSIB IL"
class="w-full"
/>
<div class="py-2 px-4 ">
<h3>
<a
target="_blank"
href="https://drive.google.com/file/d/1RxMN7PsfL9peRVyItG0hF4ddviOy6smt/view"
class="block text-center font-semibold text-xl mb-3 text-dark hover:text-primary dark:text-white dark:hover:bg-clip-text dark:hover:text-transparent dark:hover:bg-gradient-to-r from-primary to-blue-500"
> Certificate MSIB Infinite Learning</a
>
</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="pt-36 pb-32 dark:bg-slate-800">
<div class="container">
<div class="w-full px-4 justify-center">
<div class="max-w-xl mx-auto text-center mb-16">
<h4 class="font-semibold text-2xl md:text-4xl text-primary mb-5">MyContact</h4>
<p class="font-semibold text-lg text-dark dark:text-white mb-14">
Please send a message. My inbox is always open. Do you have a question or just want to say hello, I'll try my best to get back to you!
</p>
<a href="mailto: nursami385@gmail.com" class= "w-[115px] py-3 px-4 text-sm bg-primary rounded-full shadow-lg hover:opacity-80 text-white flex mx-auto">Send Me
<svg width="15" class="fill-white ml-2" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Gmail</title><path d="M24 5.457v13.909c0 .904-.732 1.636-1.636 1.636h-3.819V11.73L12 16.64l-6.545-4.91v9.273H1.636A1.636 1.636 0 0 1 0 19.366V5.457c0-2.023 2.309-3.178 3.927-1.964L5.455 4.64 12 9.548l6.545-4.91 1.528-1.145C21.69 2.28 24 3.434 24 5.457z"/></svg>
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer" class="bg-dark pb-5">
<div class="container">
<div class="w-full pt-10 border-t border-slate-800">
<div class="flex items-center justify-center mb-5">
<!-- Instagram -->
<a
href=""
target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 hover:border-primary hover:bg-primary hover:text-white text-slate-300"
>
<svg
class="fill-current"
width="20"
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Instagram</title>
<path
d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z"
/>
</svg>
</a>
<!-- twitter -->
<a
href=""
target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 hover:border-primary hover:bg-primary hover:text-white text-slate-300"
>
<svg
class="fill-current"
width="20"
role="img"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<title>Twitter</title>
<path
d="M21.543 7.104c.015.211.015.423.015.636 0 6.507-4.954 14.01-14.01 14.01v-.003A13.94 13.94 0 0 1 0 19.539a9.88 9.88 0 0 0 7.287-2.041 4.93 4.93 0 0 1-4.6-3.42 4.916 4.916 0 0 0 2.223-.084A4.926 4.926 0 0 1 .96 9.167v-.062a4.887 4.887 0 0 0 2.235.616A4.928 4.928 0 0 1 1.67 3.148 13.98 13.98 0 0 0 11.82 8.292a4.929 4.929 0 0 1 8.39-4.49 9.868 9.868 0 0 0 3.128-1.196 4.941 4.941 0 0 1-2.165 2.724A9.828 9.828 0 0 0 24 4.555a10.019 10.019 0 0 1-2.457 2.549z"
/>
</svg>
</a>
<!-- linkedin -->
<a
href=""
target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 hover:border-primary hover:bg-primary hover:text-white text-slate-300"
>
<svg
class="fill-current"
width="20"
role="img"
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>
<a
href="https://github.com/muhamadnursyami"
target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 hover:border-primary hover:bg-primary hover:text-white text-slate-300"
>
<svg class="fill-current"
width="20" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>
</a>
<a
href="mailto: nursami385@gmail.com"
target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center border border-slate-300 hover:border-primary hover:bg-primary hover:text-white text-slate-300"
>
<svg width="15" class="fill-white" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Gmail</title><path d="M24 5.457v13.909c0 .904-.732 1.636-1.636 1.636h-3.819V11.73L12 16.64l-6.545-4.91v9.273H1.636A1.636 1.636 0 0 1 0 19.366V5.457c0-2.023 2.309-3.178 3.927-1.964L5.455 4.64 12 9.548l6.545-4.91 1.528-1.145C21.69 2.28 24 3.434 24 5.457z"/></svg>
</a>
</div>
<p class="font-medium text-slate-200 text-sm text-center">
Copyright © 2023 | By Muhamad Nur Syami
</p>
</div>
</div>
</footer>
<!-- Back to Top -->
<a
href="#home"
class="motion-safe:animate-bounce h-14 w-14 bg-primary p-4 rounded-full hidden justify-center items-center z-[999] fixed bottom-4 right-4"
id="toTop"
>
<span class="mt-2 block h-5 w-5 rotate-45 border-t-2 border-l-2"></span>
</a>
<script src="dist/js/script.js"></script>
</body>
</html>