-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1042 lines (998 loc) · 37.5 KB
/
index.html
File metadata and controls
1042 lines (998 loc) · 37.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="apple-touch-icon"
sizes="57x57"
href="./assets/images/favicon/"
/>
<link
rel="apple-touch-icon"
sizes="57x57"
href="./assets/images/favicon/apple-icon-57x57.png"
/>
<link
rel="apple-touch-icon"
sizes="60x60"
href="./assets/images/favicon/apple-icon-60x60.png"
/>
<link
rel="apple-touch-icon"
sizes="72x72"
href="./assets/images/favicon/apple-icon-72x72.png"
/>
<link
rel="apple-touch-icon"
sizes="76x76"
href="./assets/images/favicon/apple-icon-76x76.png"
/>
<link
rel="apple-touch-icon"
sizes="114x114"
href="./assets/images/favicon/apple-icon-114x114.png"
/>
<link
rel="apple-touch-icon"
sizes="120x120"
href="./assets/images/favicon/apple-icon-120x120.png"
/>
<link
rel="apple-touch-icon"
sizes="144x144"
href="./assets/images/favicon/apple-icon-144x144.png"
/>
<link
rel="apple-touch-icon"
sizes="152x152"
href="./assets/images/favicon/apple-icon-152x152.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/images/favicon/apple-icon-180x180.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="./assets/images/favicon/android-icon-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/images/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="96x96"
href="./assets/images/favicon/favicon-96x96.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/images/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="./assets/images/favicon/manifest.json" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta
name="msapplication-TileImage"
content="./assets/images/favicon/ms-icon-144x144.png"
/>
<meta name="theme-color" content="#ffffff" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="output.css" />
<link rel="stylesheet" href="./assets/css/index.css" />
<title>Adriel Alves - Portfólio</title>
</head>
<body class="bg-gray-100 font-sans antialiased">
<header class="bg-gray-900 p-4 mx-auto">
<!-- Navbar -->
<!-- Breadcrumb -->
<nav
class="flex justify-center items-center px-5 py-3 text-gray-700 border rounded-lg bg-gray-800 border-gray-700"
aria-label="Breadcrumb"
>
<ol class="inline-flex items-center space-x-1 md:space-x-3">
<li class="inline-flex items-center">
<div
href="#"
class="inline-flex items-center text-sm font-medium text-gray-400 hover:text-white"
>
<svg
class="w-3 h-3 mr-2.5"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
d="m19.707 9.293-2-2-7-7a1 1 0 0 0-1.414 0l-7 7-2 2a1 1 0 0 0 1.414 1.414L2 10.414V18a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v4a1 1 0 0 0 1 1h3a2 2 0 0 0 2-2v-7.586l.293.293a1 1 0 0 0 1.414-1.414Z"
/>
</svg>
Home
</div>
</li>
<li>
<div class="flex items-center">
<svg
class="w-3 h-3 mx-1 text-gray-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 6 10"
>
<path
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="m1 9 4-4-4-4"
/>
</svg>
<a
href="#projects"
class="ml-1 text-sm font-medium md:ml-2 text-gray-400 hover:text-white"
>Projetos</a
>
</div>
</li>
<li aria-current="page">
<div href="#" class="flex items-center">
<svg
class="w-3 h-3 mx-1 text-gray-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 6 10"
>
<path
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="m1 9 4-4-4-4"
/>
</svg>
<span class="ml-1 text-sm font-medium md:ml-2 text-gray-400"
>Sobre</span
>
</div>
</li>
</ol>
</nav>
</header>
<main>
<!-- drawer component -->
<div
id="drawer-profile"
class="fixed top-0 left-0 z-40 h-screen p-4 overflow-y-auto transition-transform -translate-x-full w-80 bg-gray-800"
tabindex="-1"
aria-labelledby="drawer-label"
>
<h5
id="drawer-label"
class="inline-flex items-center mb-4 text-base font-semibold text-gray-400"
>
<img
class="w-10 h-10 rounded-full mr-4"
src="./assets/images/profile.webp"
alt="Profile Image"
/>
Adriel Alves
</h5>
<button
id="close-drawer"
type="button"
data-drawer-hide="drawer-close"
aria-controls="drawer-close"
class="trigger-profile text-gray-400 bg-transparent rounded-lg text-sm w-8 h-8 absolute top-2.5 right-2.5 inline-flex items-center justify-center hover:bg-gray-600 hover:text-white"
>
<svg
class="w-3 h-3"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 14 14"
>
<path
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="m1 1 6 6m0 0 6 6M7 7l6-6M7 7l-6 6"
/>
</svg>
<span class="sr-only">Close menu</span>
</button>
<p class="mb-6 text-[18px] text-gray-400">
Olá, eu sou o Adriel! 😄 Sou um desenvolvedor front-end junior
autodidata focado em aprender e melhorar minhas habilidades em
JavaScript, HTML, CSS e Next.js. Construí aplicações web responsivas e
otimizadas, mostrando minha paixão por tecnologia e codificação. 👨💻
Estou procurando uma oportunidade para evoluir como desenvolvedor
junior e contribuir para o time. Vamos construir um futuro incrível!
</p>
<p class="mb-6 flex flex-row flex-wrap gap-2">
<span
class="text-xs font-medium px-2.5 py-0.5 rounded-full bg-blue-900 text-blue-300"
>JavaScript</span
>
<span
class="text-xs font-medium px-2.5 py-0.5 rounded-full bg-blue-900 text-blue-300"
>TypeScript</span
>
<span
class="text-xs font-medium px-2.5 py-0.5 rounded-full bg-blue-900 text-blue-300"
>Next.js</span
>
<span
class="text-xs font-medium px-2.5 py-0.5 rounded-full bg-blue-900 text-blue-300"
>Node.js</span
>
</p>
<div class="grid grid-cols-2 gap-4">
<a
href="./assets/files/cover_letter_adriel_alves.pdf"
class="px-4 py-2 text-sm font-medium text-center border rounded-lg focus:outline-none focus:z-10 focus:ring-4 focus:ring-gray-700 bg-gray-800 text-gray-400 border-gray-600 hover:text-white hover:bg-gray-700"
>Cover Letter</a
>
<a
href="./assets/files/resume_adriel_alves.pdf"
class="inline-flex items-center px-4 py-2 text-sm font-medium text-center text-white rounded-lg focus:ring-4 bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-blue-800"
>Curriculum
<svg
class="w-3.5 h-3.5 ml-2"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 14 10"
>
<path
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9"
/>
</svg>
</a>
</div>
</div>
<!-- Hero section -->
<section id="hero" class="bg-gray-900 text-white py-32">
<div class="container mx-auto text-center">
<h2 class="text-3xl font-bold mb-4">
Adriel Alves
<span
class="trigger-profile inline-flex items-center justify-center w-6 h-6 mr-2 text-sm font-semibold rounded-full bg-gray-700 text-gray-300 hover:bg-green-600 hover:scale-125"
id="toogle-profile"
>
<svg
class="w-4 h-4"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 20 20"
>
<path
d="M10 0a10 10 0 1 0 10 10A10.011 10.011 0 0 0 10 0Zm0 5a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm0 13a8.949 8.949 0 0 1-4.951-1.488A3.987 3.987 0 0 1 9 13h2a3.987 3.987 0 0 1 3.951 3.512A8.949 8.949 0 0 1 10 18Z"
/>
</svg>
<span class="sr-only">About me</span>
</span>
</h2>
<h3
class="before:block before:absolute before:-inset-1 before:-skew-y-3 before:bg-sky-600 relative inline-block mb-4 px-4"
>
<span class="relative text-white text-2xl">Desenvolvedor Web</span>
</h3>
<p class="text-gray-300 px-3">
Construo aplicações modernas e performáticas usando as melhores
tecnologias
</p>
<!-- Technologies -->
<div
class="mt-8 w-full inline-flex flex-nowrap overflow-hidden [mask-image:_linear-gradient(to_right,transparent_0,_black_128px,_black_calc(100%-200px),transparent_100%)]"
>
<ul
class="flex items-center justify-center md:justify-start [&_li]:mx-8 [&_img]:max-w-none animate-infinite-scroll"
>
<!-- ... -->
<li data-tooltip-target="tooltip-react-logo">
<img
src="./assets/images/technologies/react-icon.svg"
alt="React"
/>
</li>
<li>
<img
src="./assets/images/technologies/node-icon.svg"
alt="Node.js"
/>
</li>
<li>
<img
src="./assets/images/technologies/javascript-icon.svg"
alt="JavaScript"
/>
</li>
<li>
<img
src="./assets/images/technologies/tailwind-icon.svg"
alt="Tailwind"
/>
</li>
<li>
<img
src="./assets/images/technologies/vue-icon.svg"
alt="Vue"
/>
</li>
<li>
<img
src="./assets/images/technologies/typescript-icon.svg"
alt="TypeScript"
/>
</li>
<li>
<img
src="./assets/images/technologies/nextjs-icon.svg"
alt="Next.js"
/>
</li>
</ul>
<ul
class="flex items-center justify-center md:justify-start [&_li]:mx-8 [&_img]:max-w-none animate-infinite-scroll"
>
<!-- ... -->
<li>
<img
src="./assets/images/technologies/react-icon.svg"
alt="React"
/>
</li>
<li>
<img
src="./assets/images/technologies/node-icon.svg"
alt="Node.js"
/>
</li>
<li>
<img
src="./assets/images/technologies/javascript-icon.svg"
alt="JavaScript"
/>
</li>
<li>
<img
src="./assets/images/technologies/tailwind-icon.svg"
alt="Tailwind"
/>
</li>
<li>
<img
src="./assets/images/technologies/vue-icon.svg"
alt="Vue"
/>
</li>
<li>
<img
src="./assets/images/technologies/typescript-icon.svg"
alt="TypeScript"
/>
</li>
<li>
<img
src="./assets/images/technologies/nextjs-icon.svg"
alt="Next.js"
/>
</li>
</ul>
<ul
class="flex items-center justify-center md:justify-start [&_li]:mx-8 [&_img]:max-w-none animate-infinite-scroll"
>
<!-- ... -->
<li>
<img
src="./assets/images/technologies/react-icon.svg"
alt="React"
/>
</li>
<li>
<img
src="./assets/images/technologies/node-icon.svg"
alt="Node.js"
/>
</li>
<li>
<img
src="./assets/images/technologies/javascript-icon.svg"
alt="JavaScript"
/>
</li>
<li>
<img
src="./assets/images/technologies/tailwind-icon.svg"
alt="Tailwind"
/>
</li>
<li>
<img
src="./assets/images/technologies/vue-icon.svg"
alt="Vue"
/>
</li>
<li>
<img
src="./assets/images/technologies/typescript-icon.svg"
alt="TypeScript"
/>
</li>
<li>
<img
src="./assets/images/technologies/nextjs-icon.svg"
alt="Next.js"
/>
</li>
</ul>
</div>
<!-- Technologies -->
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-8 px-8 pb-40">
<div class="flex flex-row justify-center items-center pb-8">
<h1 class="text-3xl font-extrabold text-slate-900">
Projetos<span
class="text-2xl font-semibold mr-2 px-2.5 py-0.5 rounded bg-blue-200 text-blue-800 ml-2"
>DEV</span
>
</h1>
</div>
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div
class="project-cover rounded-lg hover:scale-105 w-full h-full"
style="
background-image: url('./assets/images/projects/project07.webp');
"
>
<div
class="bg-slate-900 rounded-lg p-4 shadow-lg bg-opacity-40 hover:bg-opacity-90 w-full h-full"
>
<h3 class="text-lg text-white font-semibold mb-2">OpenFlyTV</h3>
<p class="text-white">
OpenFlyTV é um serviço de streaming que oferece acesso
gratuito a uma ampla variedade de canais de televisão abertos.
</p>
<div class="flex mt-4">
<img
src="./assets/images/technologies/nextjs-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Next.js"
/>
<img
src="./assets/images/technologies/react-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="React"
/>
<img
src="./assets/images/technologies/typescript-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="TypeScript"
/>
<img
src="./assets/images/technologies/tailwind-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Tailwind"
/>
<img
src="./assets/images/technologies/html-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="HTML5"
/>
<img
src="./assets/images/technologies/css-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="CSS3"
/>
</div>
<div class="flex flex-row gap-1">
<a
href="https://www.openflytv.com/"
class="inline-block bg-sky-600 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-sky-700"
>Ver Projeto</a
>
<a
href="https://github.com/adriel45dev/openflytv"
class="flex justify-center items-center bg-slate-700 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-violet-800"
>
<img
src="./assets/images/icons/github-icon.svg"
alt="GitHub"
class="w-5 h-5"
/>
</a>
</div>
</div>
</div>
<div
class="project-cover rounded-lg hover:scale-105 w-full h-full"
style="
background-image: url('./assets/images/projects/project03.webp');
"
>
<div
class="bg-slate-900 rounded-lg p-4 shadow-lg bg-opacity-40 hover:bg-opacity-90 w-full h-full"
>
<h3 class="text-lg text-white font-semibold mb-2">WordLink</h3>
<p class="text-white">
Uma plataforma online de aprendizado de idiomas com exercícios
personalizados e gamificação.
</p>
<div class="flex mt-4">
<img
src="./assets/images/technologies/nextjs-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Next.js"
/>
<img
src="./assets/images/technologies/react-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="React"
/>
<img
src="./assets/images/technologies/typescript-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="TypeScript"
/>
<img
src="./assets/images/technologies/tailwind-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Tailwind"
/>
<img
src="./assets/images/technologies/html-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="HTML5"
/>
<img
src="./assets/images/technologies/css-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="CSS3"
/>
</div>
<div class="flex flex-row gap-1">
<a
href="https://wordlinklang.vercel.app/"
class="inline-block bg-sky-600 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-sky-700"
>Ver Projeto</a
>
<a
href="https://github.com/adriel45dev/wordlink"
class="flex justify-center items-center bg-slate-700 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-violet-800"
>
<img
src="./assets/images/icons/github-icon.svg"
alt="GitHub"
class="w-5 h-5"
/>
</a>
</div>
</div>
</div>
<div
class="project-cover rounded-lg hover:scale-105 w-full h-full"
style="
background-image: url('./assets/images/projects/project05.webp');
"
>
<div
class="bg-slate-900 rounded-lg p-4 shadow-lg bg-opacity-40 hover:bg-opacity-90 w-full h-full"
>
<h3 class="text-lg text-white font-semibold mb-2">ResumoAI</h3>
<p class="text-white">
Aplicação que permite a geração automática de resumos de
textos online. O usuário insere o link de um artigo ou texto.
O modelo GPT-4 da OpenAI resume o texto.
</p>
<div class="flex mt-4">
<img
src="./assets/images/technologies/react-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="React"
/>
<img
src="./assets/images/technologies/vite-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Vite"
/>
<img
src="./assets/images/technologies/javascript-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="JavaScript"
/>
<img
src="./assets/images/technologies/redux-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Redux"
/>
<img
src="./assets/images/technologies/tailwind-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Tailwind"
/>
</div>
<div class="flex flex-row gap-1">
<a
href="https://resumoai.vercel.app/"
class="inline-block bg-sky-600 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-sky-700"
>Ver Projeto</a
>
<a
href="https://github.com/adriel45dev/resumoai"
class="flex justify-center items-center bg-slate-700 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-violet-800"
>
<img
src="./assets/images/icons/github-icon.svg"
alt="GitHub"
class="w-5 h-5"
/>
</a>
</div>
</div>
</div>
<div
class="project-cover rounded-lg hover:scale-105 w-full h-full"
style="
background-image: url('./assets/images/projects/project04.webp');
"
>
<div
class="bg-slate-900 rounded-lg p-4 shadow-lg bg-opacity-40 hover:bg-opacity-90 w-full h-full"
>
<h3 class="text-lg text-white font-semibold mb-2">
Gerenciador Escolar
</h3>
<p class="text-white">
Sistema de gerenciamento de horários escolares desenvolvido
para organizar grade curricular, turmas, professores e
recursos de forma eficiente.
</p>
<div class="flex mt-4">
<img
src="./assets/images/technologies/javascript-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="JavaScript"
/>
<img
src="./assets/images/technologies/html-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="HTML5"
/>
<img
src="./assets/images/technologies/css-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="CSS3"
/>
<img
src="./assets/images/technologies/bootstrap-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Bootstrap"
/>
</div>
<div class="flex flex-row gap-1">
<a
href="https://iema.vercel.app/"
class="inline-block bg-sky-600 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-sky-700"
>Ver Projeto</a
>
<a
href="https://github.com/adriel45dev/iema-app"
class="flex justify-center items-center bg-slate-700 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-violet-800"
>
<img
src="./assets/images/icons/github-icon.svg"
alt="GitHub"
class="w-5 h-5"
/>
</a>
</div>
</div>
</div>
<div
class="project-cover rounded-lg hover:scale-105 w-full h-full"
style="
background-image: url('./assets/images/projects/project06.webp');
"
>
<div
class="bg-slate-900 rounded-lg p-4 shadow-lg bg-opacity-40 hover:bg-opacity-90 w-full h-full"
>
<h3 class="text-lg text-white font-semibold mb-2">Lotodados</h3>
<p class="text-white">
Análise de dados avançada para identificar padrões nos
resultados dos jogos da loteria. Para que você tome decisões
mais inteligentes sobre seus jogos.
</p>
<div class="flex mt-4">
<img
src="./assets/images/technologies/nextjs-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Next"
/>
<img
src="./assets/images/technologies/typescript-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="TypeScript"
/>
<img
src="./assets/images/technologies/tailwind-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Tailwind"
/>
<img
src="./assets/images/technologies/node-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Node.js"
/>
<img
src="./assets/images/technologies/html-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="HTML"
/>
<img
src="./assets/images/technologies/css-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="CSS"
/>
</div>
<div class="flex flex-row gap-1">
<a
href="https://lotodados.vercel.app/"
class="inline-block bg-sky-600 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-sky-700"
>Ver Projeto</a
>
<a
href="https://github.com/adriel45dev/lotodados"
class="flex justify-center items-center bg-slate-700 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-violet-800"
>
<img
src="./assets/images/icons/github-icon.svg"
alt="GitHub"
class="w-5 h-5"
/>
</a>
</div>
</div>
</div>
<div
class="project-cover rounded-lg hover:scale-105 w-full h-full"
style="
background-image: url('./assets/images/projects/project01.webp');
"
>
<div
class="bg-slate-900 rounded-lg p-4 shadow-lg bg-opacity-40 hover:bg-opacity-90 w-full h-full"
>
<h3 class="text-lg text-white font-semibold mb-2">
MinimalistTODO
</h3>
<p class="text-white">
Gerenciamento de tarefas desenvolvida com foco na
simplicidade. Permite ao usuário criar, editar e marcar
tarefas como concluídas de forma rápida e fácil, sem recursos
complexos.
</p>
<div class="flex mt-4">
<img
src="./assets/images/technologies/nextjs-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Next.js"
/>
<img
src="./assets/images/technologies/typescript-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="TypeScript"
/>
<img
src="./assets/images/technologies/tailwind-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Tailwind CSS"
/>
<img
src="./assets/images/technologies/html-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="HTML5"
/>
<img
src="./assets/images/technologies/css-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="CSS3"
/>
</div>
<div class="flex flex-row gap-1">
<a
href="https://minimatodo.vercel.app/"
class="inline-block bg-sky-600 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-sky-700"
>Ver Projeto</a
>
<a
href="https://github.com/adriel45dev/mintodo"
class="flex justify-center items-center bg-slate-700 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-violet-800"
>
<img
src="./assets/images/icons/github-icon.svg"
alt="GitHub"
class="w-5 h-5"
/>
</a>
</div>
</div>
</div>
<div
class="project-cover rounded-lg hover:scale-105 w-full h-full"
style="
background-image: url('./assets/images/projects/project02.webp');
"
>
<div
class="bg-slate-900 rounded-lg p-4 shadow-lg bg-opacity-40 hover:bg-opacity-90 w-full h-full"
>
<h3 class="text-lg text-white font-semibold mb-2">CDICalc</h3>
<p class="text-white">
Calculadora de CDI desenvolvida com tecnologias web modernas
para calcular retornos de investimentos pós-fixados.
</p>
<div class="flex mt-4">
<img
src="./assets/images/technologies/nextjs-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Next.js"
/>
<img
src="./assets/images/technologies/typescript-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="TypeScript"
/>
<img
src="./assets/images/technologies/tailwind-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="Tailwind CSS"
/>
<img
src="./assets/images/technologies/html-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="HTML5"
/>
<img
src="./assets/images/technologies/css-icon.svg"
class="h-6 mr-2 hover:scale-125"
alt="CSS3"
/>
</div>
<div class="flex flex-row gap-1">
<a
href="https://cdicalc.vercel.app/"
class="inline-block bg-sky-600 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-sky-700"
>Ver Projeto</a
>
<a
href="https://github.com/adriel45dev/cdicalc-app"
class="flex justify-center items-center bg-slate-700 text-white px-4 py-2 mt-4 rounded-2xl hover:bg-violet-800"
>
<img
src="./assets/images/icons/github-icon.svg"
alt="GitHub"
class="w-5 h-5"
/>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer
class="fixed bottom-0 left-0 z-50 grid w-full h-16 grid-cols-1 px-8 border-t md:grid-cols-3 bg-gray-900 border-gray-800"
>
<div
class="items-center justify-center hidden mr-auto text-gray-500 dark:text-gray-400 md:flex"
>
<span class="text-sm">Adriel Alves © 2023</span>
</div>
<div class="flex items-center justify-center mx-auto">
<a
href="https://github.com/adriel45dev"
data-tooltip-target="tooltip-microphone"
type="button"
class="p-2.5 group bg-gray-100 rounded-full hover:bg-gray-200 mr-4 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-800 dark:bg-gray-600 dark:hover:bg-gray-800"
>
<img
src="./assets/images/icons/github-icon.svg"
alt="GitHub"
class="w-4 h-4"
/>
<span class="sr-only">GitHub</span>
</a>
<a
href="https://www.linkedin.com/in/adrielalves45/"
data-tooltip-target="tooltip-camera"
type="button"
class="p-2.5 bg-gray-100 group rounded-full hover:bg-gray-200 mr-4 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-800 dark:bg-gray-600 dark:hover:bg-gray-800"
>
<img
src="./assets/images/icons/linkedin-icon.svg"
alt="Linkedin"
class="w-4 h-4"
/>
<span class="sr-only">Linkedin</span>
</a>
<a
href="https://www.instagram.com/adriel.45/"
data-tooltip-target="tooltip-feedback"
type="button"
class="p-2.5 bg-gray-100 group rounded-full hover:bg-gray-200 mr-4 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-800 dark:bg-gray-600 dark:hover:bg-gray-800"
>
<img
src="./assets/images/icons/instagram-icon.svg"
alt="Instagram"
class="w-4 h-4"
/>
<span class="sr-only">Instagram</span>
</a>
<button
id="btn-about"
data-tooltip-target="tooltip-about"
type="button"
class="trigger-profile p-2.5 bg-gray-100 group rounded-full mr-4 md:mr-0 hover:bg-gray-200 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-800 dark:bg-gray-600 dark:hover:bg-gray-800"