-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.txt
1418 lines (1243 loc) · 65.6 KB
/
index.txt
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 lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Entre em contato com Thomas Eduardo para serviços de desenvolvimento web. Preencha o formulário ou encontre nas redes sociais.">
<meta name="keywords" content="contato, Thomas Eduardo, desenvolvimento web, formulário de contato, redes sociais">
<meta property="og:title" content="Thomas Eduardo">
<meta property="og:description" content="Desenvolvedor Frontend com experiência em HTML, CSS, JavaScript, e mais.">
<meta property="og:image" content="./src/img/Perfil/perfil.jpg">
<meta property="og:url" content="https://seusite.com">
<title>Thomas Eduardo | Desenvolvedor Web</title>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(), event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l !== 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-KT8GKBWD');
</script>
<!-- End Google Tag Manager -->
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-232Z5TC9ZZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-232Z5TC9ZZ');
</script>
<!-- Hotjar Tracking Code -->
<script>
(function (h, o, t, j, a, r) {
h.hj = h.hj || function () { (h.hj.q = h.hj.q || []).push(arguments) };
h._hjSettings = { hjid: 5095290, hjsv: 6 };
a = o.getElementsByTagName('head')[0];
r = o.createElement('script'); r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
</script>
<!-- Tawk.to Script -->
<script type="text/javascript">
var Tawk_API = Tawk_API || {}, Tawk_LoadStart = new Date();
(function () {
var s1 = document.createElement("script"), s0 = document.getElementsByTagName("script")[0];
s1.async = true;
s1.src = 'https://embed.tawk.to/your_tawk_id/default'; // Atualize 'your_tawk_id' com seu ID do Tawk.to
s1.charset = 'UTF-8';
s1.setAttribute('crossorigin', '*');
s0.parentNode.insertBefore(s1, s0);
})();
</script>
<script>
AOS.init();
</script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- CSS personalizado -->
<link rel="stylesheet" href="./src/css/styles.css">
<link rel="stylesheet" href="./src/css/inicial.css">
<link rel="stylesheet" href="./src/css/mobile.css">
<!-- Favicon -->
<link rel="icon" href="./src/img/Perfil/favicon-withe.png" type="image/png">
<!-- Outros Scripts -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" defer></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.bundle.min.js" defer></script>
<script src="https://www.gstatic.com/recaptcha/releases/6Le3oSYqAAAAAHtrgfEU6ndhckhAGBC0_sdpcHJt/recaptcha__en.js"
async defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/owl.carousel/2.3.4/owl.carousel.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.js" defer></script>
<script src="https://cdn.lordicon.com/lordicon.js" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/countup.js@2.0.9/dist/countUp.min.js" defer></script>
<script src="https://www.gstatic.com/firebasejs/9.6.1/firebase-app.js" defer></script>
<script src="https://unpkg.com/boxicons@2.1.4/dist/boxicons.js" defer></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<!-- Seus scripts personalizados -->
<script src="./src/js/scripts.js" defer></script>
<script src="./src/js/portifolio.js" defer></script>
<script src="./src/js/anime.js" defer></script>
<script src="./src/js/particles.js" defer></script>
<script src="./src/js/mobile.js" defer></script>
<script src="./src/js/biscoito.js" defer></script>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KT8GKBWD" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Tela de Carregamento -->
<div id="loading" class="loading" aria-live="polite" role="status">
<div id="loading-bar">
<img src="./src/img/Icons/block.svg" alt="Ícone de carregamento">
<div id="loading-text">Carregando...</div>
</div>
</div>
<!-- Fundo de Partículas -->
<div id="particles-js" aria-hidden="true"></div>
<!-- Cabeçalho -->
<header>
<div class="container-header">
<!-- Logo -->
<div class="logo">
<a href="#inicio" aria-label="Ir para a página inicial">
<img src="./src/img/Perfil/favicon.png" alt="Logo de Thomas Eduardo">
</a>
</div>
<!-- Navegação Desktop -->
<nav class="desktop-nav" aria-label="Navegação principal">
<ul>
<li><a href="#inicio" aria-current="page">Início</a></li>
<li><a href="#sobre">Sobre</a></li>
<li><a href="#portfolio">Portfólio</a></li>
<li><a href="#servico">Serviços</a></li>
<li><a href="#contato">Contato</a></li>
</ul>
</nav>
<!-- Menu Hamburger -->
<button class="hamburger-menu" id="hamburger-menu" aria-label="Abrir menu móvel" aria-expanded="false"
aria-controls="mobile-nav">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<g fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9">
<path d="M5 5L19 19M5 19L19 5">
<animate fill="freeze" attributeName="d" dur="0.6s" values="M5 5L19 19M5 19L19 5;M5 5L19 5M5 19L19 19" />
</path>
<path d="M12 12H12" opacity="0">
<animate fill="freeze" attributeName="d" begin="0.3s" dur="0.6s" values="M12 12H12;M5 12H19" />
<set fill="freeze" attributeName="opacity" begin="0.3s" to="1" />
</path>
</g>
</svg>
<span class="sr-only">Abrir menu móvel</span>
</button>
<!-- Navegação Móvel -->
<div class="mobile-nav-container" id="mobile-nav-container">
<nav class="mobile-nav" id="mobile-nav" aria-label="Navegação móvel" role="navigation" aria-hidden="true">
<ul class="menu">
<li class="menu-item">
<a href="#inicio">
<img src="./src/img/Icons/voltar.png" alt="inicio">
</a>
<div class="tooltip">Início</div>
</li>
<li class="menu-item">
<a href="#sobre">
<img src="./src/img/Icons/about.png" alt="about">
</a>
<div class="tooltip">Sobre</div>
</li>
<li class="menu-item">
<a href="#portfolio">
<img src="./src/img/Icons/Projetos.png" alt="portfolio">
</a>
<div class="tooltip">Portfólio</div>
</li>
<li class="menu-item">
<a href="#servico">
<img src="./src/img/Icons/config.png" alt="servico">
</a>
<div class="tooltip">Serviços</div>
</li>
<li class="menu-item">
<a href="#contato">
<img src="./src/img/Icons/contact.png" alt="contact">
</a>
<div class="tooltip">Contato</div>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- Botão de rolar para o topo -->
<button id="scrollTopBtn" aria-label="Voltar ao topo" class="scroll-to-top">
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24">
<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.25">
<path fill="currentColor" fill-opacity="0" stroke-dasharray="20" stroke-dashoffset="20"
d="M12 15h2v-6h2.5l-4.5 -4.5M12 15h-2v-6h-2.5l4.5 -4.5">
<animate attributeName="d" begin="0.5s" dur="1.5s" repeatCount="indefinite"
values="M12 15h2v-6h2.5l-4.5 -4.5M12 15h-2v-6h-2.5l4.5 -4.5;M12 15h2v-3h2.5l-4.5 -4.5M12 15h-2v-3h-2.5l4.5 -4.5;M12 15h2v-6h2.5l-4.5 -4.5M12 15h-2v-6h-2.5l4.5 -4.5" />
<animate fill="freeze" attributeName="fill-opacity" begin="0.7s" dur="0.15s" values="0;0.3" />
<animate fill="freeze" attributeName="stroke-dashoffset" dur="0.4s" values="20;0" />
</path>
<path stroke-dasharray="16" stroke-dashoffset="16" d="M6 19h12">
<animate fill="freeze" attributeName="stroke-dashoffset" begin="0.5s" dur="0.2s" values="16;0" />
</path>
</g>
</svg>
</button>
<!-- Div de Fundo para o Botão de Voltar ao Topo -->
<div class="scroll-to-top-container">
<!-- Botão para voltar ao topo -->
<button id="scroll-to-top" aria-label="Voltar ao topo" title="Voltar ao topo">
<lord-icon src="https://cdn.lordicon.com/dwoxxgps.json" trigger="loop" colors="primary:#fff"
style="width: 50px; height: 50px;"></lord-icon>
</button>
</div>
<!-- Seção Principal -->
<section class="container-primary" id="inicio" data-aos="fade-up">
<div class="container-content" data-aos="fade-up">
<h1 class="main-title" id="title">
<span class="word" id="h1">Software</span>
<span class="word" id="span">Developer</span>
</h1>
<div class="content-wrapper">
<p class="hello">Explore meu portfólio e descubra projetos inovadores e soluções personalizadas.</p>
</div>
<div>
<button class="scroll-button" aria-label="Scroll down">
<a href="#section-inicial">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<rect width="24" height="24" fill="none" />
<g fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9">
<path stroke-dasharray="16" stroke-dashoffset="16" d="M12 5l0 13.5">
<animate fill="freeze" attributeName="stroke-dashoffset" dur="0.5s" values="16;0" />
</path>
<path stroke-dasharray="12" stroke-dashoffset="12" d="M12 19l5 -5M12 19l-5 -5">
<animate fill="freeze" attributeName="stroke-dashoffset" begin="0.5s" dur="0.5s" values="12;0" />
</path>
</g>
</svg>
</a>
</button>
</div>
</div>
</section>
<!-- Cookie Notification HTML -->
<div id="cookie-notification" class="cookie-notification" data-aos="fade-down">
<div class="cookie-content">
<div class="cookie-message">
<span id="cookie-icon" class="cookie-icon">
<img src="./src/img/Icons/cookie.svg" alt="cookie">
</span>
<p id="cookie-text">Usamos cookies para personalizar sua experiência. Ao continuar visitando este site, você
concorda com o uso de cookies.</p>
</div>
<div class="cookie-buttons" data-aos="fade-down">
<a href="http://allsobrecookies.org" target="_self" class="cookie-policy-button">Leia nossa Política de
Cookies</a>
<button id="cookie-accept" class="cookie-accept-button">Entendi</button>
</div>
</div>
</div>
<!-- Seção Inicial -->
<section id="section-inicial" class="section-inicial py-5" data-aos="fade-down""
aria-labelledby=" section-inicial-heading">
<div class="container" data-aos="fade-up">
<div class="row align-items-center">
<div class="col-md-4 text-center text-md-left" data-aos="fade-down">
<div class="image-container">
<img id="profileImage" src="./src/img/Perfil/Design sem nome (2).png"
alt="Thomas Eduardo, desenvolvedor web e especialista em desenvolvimento full-stack com uma expressão amigável e profissional"
class="profile-image img-fluid" loading="lazy">
<img id="additionalImage" src="./src/img/Perfil/avatar3.png"
alt="Outra imagem relacionada ao perfil de Thomas Eduardo" class="additional-image img-fluid"
loading="lazy">
</div>
</div>
<div class="col-md-8">
<h1 id="section-inicial-heading">Olá! Bem-vindo ao meu portfolio </h1>
<p class="intro-text">
Meu nome é Thomas Eduardo, tenho 28 anos, e sou um desenvolvedor web frontend com foco em criar experiências
web excepcionais. Minha especialidade é em JavaScript e suas frameworks, como React e Next.js, além de
trabalhar com Tailwind CSS e TypeScript. Também tenho experiência em backend para implementações de APIs.
</p>
<a href="#contato" class="btn btn-primary" aria-label="Entre em contato" data-aos="fade-down-right">Pronto
para acelerar seu projeto?</a>
<div class="social-icons" data-aos="zoom-out-right" data-aos-duration="1200" data-aos-delay="600"
aria-label="Redes sociais de Thomas Eduardo">
<a class="social-icon instagram" href="https://www.instagram.com/" target="_blank" rel="noopener noreferrer"
aria-label="Instagram de Thomas Eduardo">
<!-- Instagram Icon -->
<svg xmlns="http://www.w3.org/2000/svg" width="2rem" height="2rem" viewBox="0 0 24 24">
<circle cx="17" cy="7" r="1.5" fill="currentColor" fill-opacity="0">
<animate fill="freeze" attributeName="fill-opacity" begin="1.96s" dur="0.21s" values="0;1" />
</circle>
<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5">
<!-- Uniform stroke-width -->
<path stroke-dasharray="72" stroke-dashoffset="72"
d="M16 3c2.76 0 5 2.24 5 5v8c0 2.76 -2.24 5 -5 5h-8c-2.76 0 -5 -2.24 -5 -5v-8c0 -2.76 2.24 -5 5 -5h4Z">
<animate fill="freeze" attributeName="stroke-dashoffset" dur="0.84s" values="72;0" />
</path>
<path stroke-dasharray="32" stroke-dashoffset="32"
d="M12 8c2.21 0 4 1.79 4 4c0 2.21 -1.79 4 -4 4c-2.21 0 -4 -1.79 -4 -4c0 -2.21 1.79 -4 4 -4">
<animate fill="freeze" attributeName="stroke-dashoffset" begin="0.98s" dur="0.98s" values="32;0" />
</path>
</g>
</svg>
</a>
<!-- GitHub Icon -->
<a class="social-icon github" href="https://github.com/devthmedu" target="_blank" rel="noopener noreferrer"
aria-label="GitHub de Thomas Eduardo">
<svg xmlns="http://www.w3.org/2000/svg" width="2rem" height="2rem" viewBox="0 0 24 24">
<mask id="lineMdGithubLoop0" width="24" height="24" x="0" y="0">
<g fill="#fff">
<ellipse cx="9.5" cy="9" rx="1.5" ry="1" />
<ellipse cx="14.5" cy="9" rx="1.5" ry="1" />
</g>
</mask>
<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5">
<!-- Uniform stroke-width -->
<path stroke-dasharray="32" stroke-dashoffset="32"
d="M12 4c1.67 0 2.61 0.4 3 0.5c0.53 -0.43 1.94 -1.5 3.5 -1.5c0.34 1 0.29 2.22 0 3c0.75 1 1 2 1 3.5c0 2.19 -0.48 3.58 -1.5 4.5c-1.02 0.92 -2.11 1.37 -3.5 1.5c0.65 0.54 0.5 1.87 0.5 2.5c0 0.73 0 3 0 3M12 4c-1.67 0 -2.61 0.4 -3 0.5c-0.53 -0.43 -1.94 -1.5 -3.5 -1.5c-0.34 1 -0.29 2.22 0 3c-0.75 1 -1 2 -1 3.5c0 2.19 0.48 3.58 1.5 4.5c1.02 0.92 2.11 1.37 3.5 1.5c-0.65 0.54 -0.5 1.87 -0.5 2.5c0 0.73 0 3 0 3">
<animate fill="freeze" attributeName="stroke-dashoffset" dur="1.33s" values="32;0" />
</path>
<path stroke-dasharray="10" stroke-dashoffset="10"
d="M9 19c-1.406 0-2.844-.563-3.688-1.188C4.47 17.188 4.22 16.157 3 15.5">
<animate attributeName="d" dur="5.7s" repeatCount="indefinite"
values="M9 19c-1.406 0-2.844-.563-3.688-1.188C4.47 17.188 4.22 16.157 3 15.5;M9 19c-1.406 0-3-.5-4-.5-.532 0-1 0-2-.5;M9 19c-1.406 0-2.844-.563-3.688-1.188C4.47 17.188 4.22 16.157 3 15.5" />
<animate fill="freeze" attributeName="stroke-dashoffset" begin="1.52s" dur="0.38s" values="10;0" />
</path>
</g>
<rect width="8" height="4" x="8" y="11" fill="currentColor" mask="url(#lineMdGithubLoop0)">
<animate attributeName="y" dur="19s" keyTimes="0;0.45;0.46;0.54;0.55;1" repeatCount="indefinite"
values="11;11;7;7;11;11" />
</rect>
</svg>
</a>
<!-- LinkedIn Icon -->
<a class="social-icon linkedin" href="https://www.linkedin.com/in/devthm/" target="_blank"
rel="noopener noreferrer" aria-label="LinkedIn de Thomas Eduardo">
<svg xmlns="http://www.w3.org/2000/svg" width="2rem" height="2rem" viewBox="0 0 24 24">
<circle cx="4.983" cy="5.009" r="2.188" fill="currentColor" />
<path fill="currentColor"
d="M9.237 8.855v12.139h3.769v-6.003c0-1.584.298-3.118 2.262-3.118c1.937 0 1.961 1.811 1.961 3.218v5.904H21v-6.657c0-3.27-.704-5.783-4.526-5.783c-1.835 0-3.065 1.007-3.568 1.96h-.051v-1.66zm-6.142 0H6.87v12.139H3.095z" />
</svg>
</a>
<!-- Reddit Icon -->
<a class="social-icon reddit" href="https://www.reddit.com/user/thmedu/" target="_blank"
rel="noopener noreferrer" aria-label="Reddit de Thomas Eduardo">
<svg xmlns="http://www.w3.org/2000/svg" width="2rem" height="2rem" viewBox="0 0 24 24">
<mask id="lineMdRedditLoop0">
<g fill="#fff">
<path fill-opacity="0" stroke="#fff" stroke-dasharray="48" stroke-dashoffset="48"
stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"
d="M12 9.42c4.42 0 8 2.37 8 5.29c0 2.92 -3.58 5.29 -8 5.29c-4.42 0 -8 -2.37 -8 -5.29c0 -2.92 3.58 -5.29 8 -5.29Z">
<animate fill="freeze" attributeName="fill-opacity" begin="0.84s" dur="0.56s" values="0;1" />
<animate fill="freeze" attributeName="stroke-dashoffset" dur="0.84s" values="48;0" />
</path>
<circle cx="7.24" cy="11.97" r="2.24" opacity="0">
<animate fill="freeze" attributeName="cx" begin="1.4s" dur="0.28s" values="7.24;3.94" />
<set fill="freeze" attributeName="opacity" begin="1.4s" to="1" />
</circle>
<circle cx="16.76" cy="11.97" r="2.24" opacity="0">
<animate fill="freeze" attributeName="cx" begin="1.4s" dur="0.28s" values="16.76;20.06" />
<set fill="freeze" attributeName="opacity" begin="1.4s" to="1" />
</circle>
<circle cx="18.45" cy="4.23" r="1.61" opacity="0">
<animate attributeName="cx" begin="3.36s" dur="8.4s" repeatCount="indefinite"
values="18.45;5.75;18.45" />
<set fill="freeze" attributeName="opacity" begin="3.64s" to="1" />
</circle>
</g>
<path fill="none" stroke="#fff" stroke-dasharray="12" stroke-dashoffset="12" stroke-linecap="round"
stroke-linejoin="round" stroke-width="1.5" Uniform stroke-width -->
d="M12 8.75L13.18 3.11L18.21 4.18">
<animate attributeName="d" begin="3.36s" dur="8.4s" repeatCount="indefinite"
values="M12 8.75L13.18 3.11L18.21 4.18;M12 8.75L12 2L12 4.18;M12 8.75L10.82 3.11L5.79 4.18;M12 8.75L12 2L12 4.18;M12 8.75L13.18 3.11L18.21 4.18" />
<animate fill="freeze" attributeName="stroke-dashoffset" begin="3.36s" dur="0.28s" values="12;0" />
</path>
<g fill-opacity="0">
<circle cx="8.45" cy="13.59" r="1.61">
<animate fill="freeze" attributeName="fill-opacity" begin="1.68s" dur="0.56s" values="0;1" />
</circle>
<circle cx="15.55" cy="13.59" r="1.61">
<animate fill="freeze" attributeName="fill-opacity" begin="2.24s" dur="0.56s" values="0;1" />
</circle>
</g>
<path fill="none" stroke="#000" stroke-dasharray="12" stroke-dashoffset="12" stroke-linecap="round"
stroke-linejoin="round" stroke-width="1.5" Uniform stroke-width -->
d="M8.47 17.52c0 0 0.94 1.06 3.53 1.06c2.58 0 3.53 -1.06 3.53 -1.06">
<animate fill="freeze" attributeName="stroke-dashoffset" begin="2.8s" dur="0.28s" values="12;0" />
</path>
</mask>
<rect width="24" height="24" fill="currentColor" mask="url(#lineMdRedditLoop0)" />
</svg>
</a>
</div>
</div>
</div>
</section>
<!-- Seção Sobre -->
<section class="sobre" id="sobre" aria-labelledby="sobre-heading">
<div class="container" data-aos="fade-up">
<div class="title-section">
<h2 id="sobre-heading" class="section-title">Sobre Mim</h2>
<p class="section-subtitle">O que eu faço e o que eu amo</p>
</div>
<div class="row">
<!-- Bloco de Desenvolvimento Frontend -->
<div class="col-md-3 col-sm-6 mb-4">
<div class="info-block" data-aos="zoom-out-right" data-aos-duration="1000">
<div class="ci-icon">
<img src="./src/img/frontend developer/pc.png" alt="pc">
</div>
<div class="ci-text">
<h3> Desenvolvimento Web</h3>
<p>Sou um desenvolvedor frontend especializado em JavaScript, React e Next.js. Minha missão é criar
interfaces web inovadoras e eficientes, priorizando a experiência do usuário.
</p>
</div>
</div>
</div>
<!-- Bloco de Experiência do Usuário -->
<div class="col-md-3 col-sm-6 mb-4">
<div class="info-block" data-aos="zoom-out-right" data-aos-duration="1000" data-aos-delay="200">
<div class="ci-icon">
<img src="./src/img/frontend developer/user.png" alt="user">
</div>
<div class="ci-text">
<h3> Experiência do Usuário</h3>
<p>Sou apaixonado por criar interfaces web que são não só bonitas, mas também funcionais e intuitivas. Meu
objetivo é garantir que cada experiência seja agradável .
</p>
</div>
</div>
</div>
<!-- Bloco de Automatização e Eficiência -->
<div class="col-md-3 col-sm-6 mb-4">
<div class="info-block" data-aos="zoom-out-right" data-aos-duration="1000" data-aos-delay="400">
<div class="ci-icon">
<img src="./src/img/frontend developer/efiencie.png" alt="efiencie">
</div>
<div class="ci-text">
<h3> Abordagem à Eficiência</h3>
<p>Abordagem à Inovação Sou apaixonado por trazer novas ideias e tecnologias para projetos. Meu foco é
criar soluções criativas que tragam valor real e impactem positivamente.</p>
</div>
</div>
</div>
<!-- Bloco de Inovação e Implementação -->
<div class="col-md-3 col-sm-6 mb-4">
<div class="info-block" data-aos="zoom-out-right" data-aos-duration="1000" data-aos-delay="600">
<div class="ci-icon">
<img src="./src/img/frontend developer/inovação.png" alt="inovação">
</div>
<div class="ci-text">
<h3> Abordagem à Inovação</h3>
<p>Sou apaixonado por trazer novas ideias e tecnologias para projetos. Meu foco é criar soluções criativas
que trajam valor real e impactem positivamente os usuários finais.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Seção Educação -->
<section class="education" id="education" data-aos="zoom-out-right" aria-labelledby="education-heading">
<div class="title-section">
<h2 id="education-heading" class="section-title">Formação Acadêmica</h2>
<p class="section-subtitle">Educação e Qualificações Acadêmicas</p>
</div>
<div class="education-list">
<div class="item" data-aos="zoom-out-right">
<div class="icon" aria-hidden="true">
<img src="./src/img/frontend developer/celo.png" alt="Certificação em Cloud Computing">
</div>
<div class="info">
<h3>Técnico em Cloud Computing</h3>
<p><span class="institution">AWS</span> 2023 | 2024</p>
<p class="description">Adquiri conhecimentos em Cloud Computing através do programa AWS-ReStart. Durante essa
formação, desenvolvi habilidades práticas e teóricas em tecnologia de nuvem, preparando-me para enfrentar
desafios e criar soluções inovadoras na área.</p>
</div>
</div>
<div class="item" data-aos="zoom-out-right" data-aos-delay="100">
<div class="icon" aria-hidden="true">
<img src="./src/img/frontend developer/celo.png" alt="Faculdade em DevOps">
</div>
<div class="info">
<h3>Faculdade em DevOps</h3>
<p><span class="institution">Anhanguera</span> - 2023 | 2026</p>
<p class="description">Atualmente estou cursando a faculdade de Desenvolvimento de Operações na Anhanguera.
Este curso me permite focar em gestão de processos, análise de sistemas e otimização de workflows, visando
melhorar a eficiência operacional e a integração entre equipes.</p>
</div>
</div>
</div>
</section>
<!-- Seção Certificados -->
<section class="certificates-education" id="certificates" data-aos="zoom-in-down"
aria-labelledby="certificates-heading">
<div class="title-section">
<h2 id="certificates-heading" class="section-title">Certificados e Qualificações</h2>
<p class="section-subtitle">Reconhecimentos e Certificações Profissionais</p>
</div>
<div class="certificates-list">
<article class="item" data-aos="zoom-out-right">
<div class="icon" aria-hidden="true">
<img src="./src/img/frontend developer/certificado.png" alt="certificado">
</div>
<div class="info">
<h4><a href="https://ada.tech/certificado?code=dc7b1471-5127-820b-390c-41144fc46cdf" target="_blank"
rel="noopener noreferrer" aria-label="Certificado de API Rest da ADA Tech">API Rest</a></h4>
<p>Certificado obtido em <span class="institution">ADA Tech</span>, destacando minha habilidade em construir e
consumir APIs RESTful para integrações eficientes.</p>
</div>
</article>
<article class="item" data-aos="zoom-out-right" data-aos-delay="100">
<div class="icon" aria-hidden="true">
<img src="./src/img/frontend developer/certificado.png" alt="certificado">
</div>
<div class="info">
<h4><a href="https://ada.tech/certificado?code=ae13798b-2afc-a64a-a72f-239fa498ea11" target="_blank"
rel="noopener noreferrer" aria-label="Certificado de Figma para Devs da ADA Tech">Figma para Devs</a></h4>
<p>Certificado da <span class="institution">ADA Tech</span> que valida minha capacidade em utilizar o Figma
para o design de interfaces e protótipos interativos.</p>
</div>
</article>
<article class="item" data-aos="zoom-out-right" data-aos-delay="200">
<div class="icon" aria-hidden="true">
<img src="./src/img/frontend developer/certificado.png" alt="certificado">
</div>
<div class="info">
<h4><a href="https://ada.tech/certificado?code=c72a7d09-dbea-846f-3181-392317851a61" target="_blank"
rel="noopener noreferrer" aria-label="Certificado de Git e Versionamento da ADA Tech">Git e
Versionamento</a></h4>
<p>Certificado em <span class="institution">ADA Tech</span> que comprova minhas habilidades em controle de
versão e colaboração usando Git.</p>
</div>
</article>
<article class="item" data-aos="zoom-out-right" data-aos-delay="300">
<div class="icon" aria-hidden="true">
<img src="./src/img/frontend developer/certificado.png" alt="certificado">
</div>
<div class="info">
<h4><a
href="https://on.fiap.com.br/pluginfile.php/1/local_nanocourses/certificado_nanocourse/120425/9f1272cacb82231c0efd10298a4295bb/certificado.png"
target="_blank" rel="noopener noreferrer" aria-label="Certificado de User Experience da FIAP">User
Experience</a></h4>
<p>Certificado em <span class="institution">FIAP</span>, validando meu conhecimento em princípios e práticas
de UX design.</p>
</div>
</article>
<article class="item" data-aos="zoom-out-right" data-aos-delay="400">
<div class="icon" aria-hidden="true">
<img src="./src/img/frontend developer/certificado.png" alt="certificado">
</div>
<div class="info">
<h4><a href="https://ada.tech/certificado?code=c72a7d09-dbea-846f-3181-392317851a61" target="_blank"
rel="noopener noreferrer" aria-label="Certificado de SAP de Grandes Projetos">SAP</a></h4>
<p>Certificado em <span class="institution">Grandes Projetos</span>, destacando habilidades adquiridas em
projetos complexos e soluções SAP.</p>
</div>
</article>
<article class="item" data-aos="zoom-out-right" data-aos-delay="500">
<div class="icon" aria-hidden="true">
<img src="./src/img/frontend developer/certificado.png" alt="certificado">
</div>
<div class="info">
<h4><a href="https://ada.tech/certificado?code=c72a7d09-dbea-846f-3181-392317851a61" target="_blank"
rel="noopener noreferrer" aria-label="Certificado de User Experience da FIAP">CI&T</a></h4>
<p>Certificado da <span class="institution">CI&T</span>, destacando habilidades em análise e desenvolvimento
de soluções tecnológicas.</p>
</div>
</article>
</div>
</section>
<section class="aesthetics" id="aesthetics" data-aos="zoom-out-right" aria-labelledby="aesthetics-heading">
<div class="title-section">
<h2 id="aesthetics-heading" class="section-title">Meus Números em Destaque</h2>
<p class="section-subtitle">Principais Conquistas e Experiências</p>
</div>
<div class="quick-aesthetics">
<div class="box-aesthetics" data-aos="zoom-in-down">
<img src="./src/img/Icons/Projetos.png" alt="Ícone de Bugs">
<p id="contador-projetos" class="number-aesthetics" data-target="10">0</p>
<p class="description-aesthetics">Projetos Concluidos </p>
</div>
<div class="box-aesthetics" data-aos="zoom-in-down">
<img src="./src/img/Icons/Relogio.png" alt="Ícone de Estudo">
<p id="contador-estudo" class="number-aesthetics" data-target="1400">0</p>
<p class="description-aesthetics">Horas de Estudo</p>
</div>
<div class="box-aesthetics" data-aos="zoom-in-down">
<img src="./src/img/Icons/rocket_icon.png" alt="Ícone de Deploy">
<p id="contador-repositorios" class="number-aesthetics" data-target="19">0</p>
<p class="description-aesthetics">Deploy Realizados</p>
</div>
<div class="box-aesthetics" data-aos="fade-down">
<img src="./src/img/Icons/coffe.png" alt="Ícone de Café">
<p id="contador-cafe" class="number-aesthetics" data-target="1100">0</p>
<p class="description-aesthetics">Cafés Bebidos</p>
</div>
</div>
</section>
<!-- Seção de Habilidades -->
<section class="skills" id="skills" data-aos="fade-up" aria-labelledby="skills-heading">
<div class="title-section">
<h2 id="skills-heading" class="section-title">Minhas Competências</h2>
<p class="section-subtitle">Tecnologias e Ferramentas Profissionais</p>
</div>
<div class="skill-grid-wrapper" data-aos="fade-up">
<div class="skill-box" data-aos="fade-up" aria-label="Bootstrap">
<img src="./src/img/skill/bootstrap.svg" alt="Logo do Bootstrap" class="skill-icon" loading="lazy">
<div class="skill-description">Bootstrap</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="Git">
<img src="./src/img/skill/git.svg" alt="Logo do Git" class="skill-icon" loading="lazy">
<div class="skill-description">Git</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="JavaScript">
<img src="./src/img/skill/js.svg" alt="Logo do JavaScript" class="skill-icon" loading="lazy">
<div class="skill-description">JavaScript</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="Babel">
<img src="./src/img/skill/babel.svg" alt="Logo do Babel" class="skill-icon" loading="lazy">
<div class="skill-description">Babel</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="Figma">
<img src="./src/img/skill/figma.svg" alt="Logo do Figma" class="skill-icon" loading="lazy">
<div class="skill-description">Figma</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="Vite.js">
<img src="./src/img/skill/vitejs.svg" alt="Logo do Vite.js" class="skill-icon" loading="lazy">
<div class="skill-description">Vite.js</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="ESLint">
<img src="./src/img/skill/eslint.svg" alt="Logo do ESLint" class="skill-icon" loading="lazy">
<div class="skill-description">ESLint</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="TypeScript">
<img src="./src/img/skill/typescript.svg" alt="Logo do TypeScript" class="skill-icon" loading="lazy">
<div class="skill-description">TypeScript</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="CSS">
<img src="./src/img/skill/css.svg" alt="Logo do CSS" class="skill-icon" loading="lazy">
<div class="skill-description">CSS</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="GIMP">
<img src="./src/img/skill/gimp.svg" alt="Logo do GIMP" class="skill-icon" loading="lazy">
<div class="skill-description">GIMP</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="Next.js">
<img src="./src/img/skill/nextjs.svg" alt="Logo do Next.js" class="skill-icon" loading="lazy">
<div class="skill-description">Next.js</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="Tailwind CSS">
<img src="./src/img/skill/tailwindcss.svg" alt="Logo do Tailwind CSS" class="skill-icon" loading="lazy">
<div class="skill-description">Tailwind CSS</div>
</div>
<div class="skill-box" data-aos="fade-up" aria-label="Node.js">
<img src="./src/img/skill/node.svg" alt="Logo do Node.js" class="skill-icon" loading="lazy">
<div class="skill-description">Node.js</div>
</div>
</div>
</section>
<!-- Seção de Portfólio -->
<section class="portfolio" id="portfolio" aria-labelledby="portfolio-title">
<div class="container" data-aos="fade-up">
<div class="title-section" data-aos="zoom-in-down">
<h2 id="portfolio-title" class="section-title">Portfólio</h2>
<p class="section-subtitle">Projetos e Trabalhos Recentes</p>
</div>
<!-- Seção Portfólio -->
<div class="portfolio-grid">
<!-- Inicio do Projeto -->
<div class="portfolio-item" data-aos="fade-up">
<figure class="portfolio-image">
<div class="carousel slide" id="carouselAppCriptomoeda" data-bs-ride="carousel" data-aos="fade-up">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./src/projetos/App-Cripto/1.jpg" alt="App-Cripto - Imagem 1"
class="d-block w-100 img-projeto">
</div>
<div class="carousel-item">
<img src="./src/projetos/App-Cripto/2.jpg" alt="App-Cripto - Imagem 2"
class="d-block w-100 img-projeto">
</div>
<div class="carousel-item">
<img src="./src/projetos/App-Cripto/3.jpg" alt="App-Cripto - Imagem 3"
class="d-block w-100 img-projeto">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselAppCriptomoeda"
data-bs-slide="prev" aria-label="Anterior">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselAppCriptomoeda"
data-bs-slide="next" aria-label="Próximo">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
</button>
</div>
</figure>
<!--Nome do Projeto -->
<div class="portfolio-item-info" data-aos="fade-up">
<h3 class="project-title">App Criptomoeda</h3>
<p class="technologies">
<span class="tech-item">
<i class="fab fa-html5" aria-hidden="true"></i> HTML5
</span>
<span class="tech-item">
<i class="fab fa-css3-alt" aria-hidden="true"></i> CSS3
</span>
<span class="tech-item">
<i class="fab fa-js" aria-hidden="true"></i> JavaScript
</span>
<span class="tech-item">
<i class="fab fa-react" aria-hidden="true"></i> React
</span>
</p>
<button class="btn-description-toggle" aria-label="Mostrar Descrição">
<i class="fas fa-plus"></i>
</button>
<p class="project-description hidden">
Este projeto é uma <strong>aplicação de criptomoeda</strong> que permite aos usuários visualizar
<strong>informações sobre diferentes criptomoedas</strong>, incluindo <strong>preços</strong>,
<strong>capitalização de mercado</strong> e <strong>gráficos históricos</strong>. A aplicação utiliza a
<strong>API CoinGecko</strong> para obter <strong>dados em tempo real</strong> e exibir essas informações
de forma <strong>intuitiva</strong>.
</p>
<div class="portfolio-links">
<a href="https://app-criptografico.vercel.app/" class="portfolio-item-button" target="_blank"
rel="noopener noreferrer">
<i class="fas fa-external-link-alt" aria-hidden="true"></i>
<span class="tooltip-text">Site</span>
</a>
<a href="https://github.com/devthmedu/App-Criptograficor" class="portfolio-item-button" target="_blank"
rel="noopener noreferrer">
<i class="fab fa-github" aria-hidden="true"></i>
<span class="tooltip-text">Repositório</span>
</a>
<button class="btn btn-video-toggle" onclick="toggleVideo(this)">
<i class="fas fa-video" aria-hidden="true"></i>
<span class="tooltip-text"></span>
</button>
</div>
<div class="portfolio-video hidden">
<video controls class="w-100">
<source src="#" type="video/mp4">
Seu navegador não suporta a exibição deste vídeo.
</video>
</div>
</div>
</div>
<!-- Fim do projeto -->
<!-- FAdicione um novo projeto -->
<!-- Inicio do Projeto -->
<div class="portfolio-item">
<figure class="portfolio-image">
<div class="carousel slide" id="carousel Gestão-de-Faturas" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./src/projetos/Gerador-de-Fatura/1.jpg" alt=/Gerador-de-Fatura - Imagem 1"
class="d-block w-100 img-projeto">
</div>
<div class="carousel-item">
<img src="./src/projetos/Gerador-de-Fatura/2.jpg" alt=/Gerador-de-Fatura - Imagem 2"
class="d-block w-100 img-projeto">
</div>
<div class="carousel-item">
<img src="./src/projetos/Gerador-de-Fatura/3.jpg" alt=/Gerador-de-Fatura - Imagem 3"
class="d-block w-100 img-projeto">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carousel Gestão-de-Faturas"
data-bs-slide="prev" aria-label="Anterior">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carousel Gestão-de-Faturas"
data-bs-slide="next" aria-label="Próximo">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
</button>
</div>
</figure>
<!--Nome do Projeto -->
<div class="portfolio-item-info" data-aos="fade-up">
<h3 class="project-title"> Gestão de Faturas</h3>
<p class="technologies">
<span class="tech-item">
<i class="fab fa-html5" aria-hidden="true"></i> HTML5
</span>
<span class="tech-item">
<i class="fab fa-css3-alt" aria-hidden="true"></i> CSS3
</span>
<span class="tech-item">
<i class="fab fa-js" aria-hidden="true"></i> JavaScript
</span>
<span class="tech-item">
<i class="fab fa-react" aria-hidden="true"></i> React
</span>
</p>
<button class="btn-description-toggle" aria-label="Mostrar Descrição">
<i class="fas fa-plus"></i>
</button>
<p class="project-description hidden">
O projeto de <strong> gestão de fatura</strong> é uma aplicação web destinada a gerar e gerenciar faturas
de forma
eficiente. Ele permite <strong>visualizar uma prévia da fatura</strong>, adicionar e editar produtos, e
imprimir ou gerar
um PDF da fatura. A interface foi desenvolvida com React e utiliza bibliotecas modernas para garantir uma
experiência de usuário fluida e responsiva.
</p>
<div class="portfolio-links">
<a href="https://invoice-generator--omega.vercel.app/" class="portfolio-item-button" target="_blank"
rel="noopener noreferrer">
<i class="fas fa-external-link-alt" aria-hidden="true"></i>
<span class="tooltip-text">Site</span>
</a>
<a href="https://github.com/devthmedu/Invoice-Generator" class="portfolio-item-button" target="_blank"
rel="noopener noreferrer">
<i class="fab fa-github" aria-hidden="true"></i>
<span class="tooltip-text">Repositório</span>
</a>
<button class="btn btn-video-toggle" onclick="toggleVideo(this)">
<i class="fas fa-video" aria-hidden="true"></i>
<span class="tooltip-text"></span>
</button>
</div>
<div class="portfolio-video hidden">
<video controls class="w-100">
<source src="#" type="video/mp4">
Seu navegador não suporta a exibição deste vídeo.
</video>
</div>
</div>
</div>
<!-- Inicio do Projeto -->
<div class="portfolio-item">
<figure class="portfolio-image">
<div class="carousel slide" id="carouselCustomer-Insights" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./src/projetos/Customer-Insights/1.jpg" alt="Customer-Insights- Imagem 1"
class="d-block w-100 img-projeto">
</div>
<div class="carousel-item">
<img src="./src/projetos/Customer-Insights/2.jpg" alt="Customer-Insights - Imagem 2"
class="d-block w-100 img-projeto">
</div>
<div class="carousel-item">
<img src="./src/projetos/Customer-Insights/3.jpg" alt="Customer-Insights - Imagem 3"
class="d-block w-100 img-projeto">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselCustomer-Insights"
data-bs-slide="prev" aria-label="Anterior">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselCustomer-Insights"
data-bs-slide="next" aria-label="Próximo">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
</button>
</div>
</figure>
<!--Nome do Projeto -->
<div class="portfolio-item-info" data-aos="fade-up">
<h3 class="project-title">Customer Insights</h3>
<p class="technologies">
<span class="tech-item">
<i class="fab fa-html5" aria-hidden="true"></i> HTML5
</span>
<span class="tech-item">
<i class="fab fa-css3-alt" aria-hidden="true"></i> CSS3
</span>
<span class="tech-item">
<i class="fab fa-js" aria-hidden="true"></i> JavaScript
</span>
<span class="tech-item">
<i class="fab fa-code" aria-hidden="true"></i> TypeScript
</span>
</p>
<button class="btn-description-toggle" aria-label="Mostrar Descrição">
<i class="fas fa-plus"></i>
</button>
<p class="project-description hidden">
<strong> CustomerInsights </strong> é uma ferramenta inovadora projetada para ajudá-lo a acompanhar e
analisar as interações
recentes dos clientes. Com uma interface amigável e informações detalhadas, você poderá entender melhor o
<strong>comportamento dos seus clientes</strong> e melhorar suas <strong> estratégias de interação e
engajamento.</strong>
</p>
<div class="portfolio-links">