-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
961 lines (946 loc) · 38.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gustavo Lara</title>
<link rel="stylesheet" href="assets/css/styles.css" />
<link
rel="icon"
type="image/svg+xml"
href="assets/svgs/terminal-solid.svg"
/>
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--=============== FAVICON ===============-->
<link
rel="shortcut icon"
href="assets/img/favicon.png"
type="image/x-icon"
/>
<!--=============== BOXICONS ===============-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css"
/>
<!--=============== SWIPER CSS ===============-->
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css" />
<!--=============== CSS ===============-->
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.wrapper {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-gap: 10px;
width: 95vw;
height: 95h;
background-color: #282a36;
}
.item {
background-color: #282a36;
/* border: 1px solid #ccc; */
border-radius: 5px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
text-align: center;
color: white !important;
}
/* Example styling for each item */
.item:nth-child(1) {
/* background-color: #f0f0f0; */
}
/* Add more styles for other items as needed */
/* Responsive adjustments */
@media (max-width: 768px) {
.wrapper {
grid-template-columns: repeat(2, 1fr);
background-color: #282a36;
grid-template-rows: repeat(5, 1fr);
}
}
</style>
<script type="text/javascript" src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</head>
<body>
<nav class="navbar">
<ul class="nav">
<li class="logo">
<a href="#" class="item-link">
<span class="link-text"> Gustavo Lara </span>
<svg
aria-hidden="true"
focusable="false"
data-prefix="fas"
data-icon="angle-right"
class="svg-inline--fa fa-angle-right fa-w-8"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 256 512"
>
<path
fill="currentColor"
d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"
></path>
</svg>
<svg
height="512"
width="356"
id="svg3725"
viewBox="0 0 356 512"
role="img"
class="svg-inline--fa gus-underline fa-w-8 blink"
data-icon="underline"
data-prefix="fas"
focusable="false"
aria-hidden="true"
>
<path
id="path3743"
d="M -35.790458,303.91368 -108.8405,424.77865 c -5.27757,8.732 -17.84,7.60133 -24.64517,0 l -16.45964,-18.38251 c -6.79429,-7.58836 -6.80735,-19.88688 -0.029,-27.49308 L -38.136226,253.40699 -149.97363,127.91172 c -6.77831,-7.6062 -6.76525,-19.90472 0.029,-27.49307 l 16.45893,-18.382501 c 6.8059,-7.60133 17.83998,-7.60133 24.64515,0 l 70.704324,171.370841 c 6.8059,7.60052 -4.70247,20.01595 -11.50837,27.61728 z M 309.66624,415.60321 v -25.9514 c 0,-10.74955 -7.80214,-19.46354 -17.42683,-19.46354 H 71.499584 c -9.62469,0 -17.42683,8.71399 -17.42683,19.46354 v 25.9514 c 0,10.74955 7.80214,19.46355 17.42683,19.46355 H 292.23941 c 9.62469,0 17.42683,-8.714 17.42683,-19.46355 z"
style="fill: currentColor; stroke-width: 0.76737726"
/>
</svg>
</a>
</li>
<li class="nav-item">
<a href="#inicio" class="item-link">
<svg
aria-hidden="true"
focusable="false"
data-prefix="fas"
data-icon="user"
class="svg-inline--fa fa-user fa-w-14"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
>
<path
fill="currentColor"
d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"
></path>
</svg>
<span class="link-text"> Início </span>
</a>
</li>
<li class="nav-item">
<a href="#stack" class="item-link">
<svg
aria-hidden="true"
focusable="false"
data-prefix="fas"
data-icon="briefcase"
class="svg-inline--fa fa-briefcase fa-w-16"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
>
<path
fill="currentColor"
d="M320 336c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h416c25.6 0 48-22.4 48-48V288H320v48zm144-208h-80V80c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h512v-80c0-25.6-22.4-48-48-48zm-144 0H192V96h128v32z"
></path>
</svg>
<span class="link-text"> Stack </span>
</a>
</li>
<li class="nav-item">
<a href="#portfolio" class="item-link">
<svg
aria-hidden="true"
focusable="false"
data-prefix="fas"
data-icon="stream"
class="svg-inline--fa fa-stream fa-w-16"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
>
<path
fill="currentColor"
d="M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"
></path>
</svg>
<span class="link-text"> Portfólio </span>
</a>
</li>
<li class="nav-item">
<a href="#curriculo" class="item-link">
<svg
aria-hidden="true"
focusable="false"
data-prefix="far"
data-icon="file"
class="svg-inline--fa fa-file fa-w-12"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 384 512"
>
<path
fill="currentColor"
d="M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48z"
></path>
</svg>
<span class="link-text"> Currículo </span>
</a>
</li>
<li class="nav-item list-end info">
<a
target="__blank"
href="https://www.linkedin.com/in/gustavo-lara-8a4a58185/"
class="item-link"
>
<svg
aria-hidden="true"
focusable="false"
data-prefix="fab"
data-icon="linkedin-in"
class="svg-inline--fa fa-linkedin-in fa-w-14"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
>
<path
fill="currentColor"
d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"
></path>
</svg>
<span class="link-text"> LinkedIn </span>
</a>
</li>
<li class="nav-item info">
<a
target="__blank"
href="https://github.com/gustavodslara"
class="item-link"
>
<svg
aria-hidden="true"
focusable="false"
data-prefix="fab"
data-icon="github"
class="svg-inline--fa fa-github fa-w-16"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
>
<path
fill="currentColor"
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"
></path>
</svg>
<span class="link-text"> GitHub </span>
</a>
</li>
<li class="nav-item info">
<a href="mailto:gustavo.silvalara@outlook.com" class="item-link">
<svg
aria-hidden="true"
focusable="false"
data-prefix="fas"
data-icon="envelope-open"
class="svg-inline--fa fa-envelope-open fa-w-16"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
>
<path
fill="currentColor"
d="M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"
></path>
</svg>
<span class="link-text"> Email </span>
</a>
</li>
</ul>
</nav>
<div style="
position: fixed;
top: 0;
right: 0;
z-index: 9999;" id="google_translate_element"></div>
<main>
<section id="inicio" class="page1">
<div class="container" id="scene">
<div class="conteudo" data-depth="0.9">
<div>
<h1>
<span class="pink">Olá, </span>
<span class="green">me chamo</span>
<span class="blue">Gustavo</span>
</h1>
<p>
Sou um desenvolvedor sênior com uma sólida carreira, enfatizando
autodidatismo, produtividade e liderança.
</p>
<p >
Minha experiência abrange projetos desafiadores e contribuições
valiosas em diversas empresas.
</p>
</div>
</div>
</div>
<div class="contact">
<ul>
<li>
<a
target="__blank"
href="https://www.linkedin.com/in/gustavo-lara-8a4a58185/"
>
<svg
aria-hidden="true"
focusable="false"
data-prefix="fab"
data-icon="linkedin-in"
class="svg-inline--fa fa-linkedin-in fa-w-14"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
>
<path
fill="currentColor"
d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"
></path>
</svg>
</a>
</li>
<li>
<a target="__blank" href="https://github.com/gustavodslara">
<svg
aria-hidden="true"
focusable="false"
data-prefix="fab"
data-icon="github"
class="svg-inline--fa fa-github fa-w-16"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 496 512"
>
<path
fill="currentColor"
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"
></path>
</svg>
</a>
</li>
<li>
<a href="mailto:gustavo.silvalara@outlook.com">
<svg
aria-hidden="true"
focusable="false"
data-prefix="fas"
data-icon="envelope-open"
class="svg-inline--fa fa-envelope-open fa-w-16"
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
>
<path
fill="currentColor"
d="M512 464c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V200.724a48 48 0 0 1 18.387-37.776c24.913-19.529 45.501-35.365 164.2-121.511C199.412 29.17 232.797-.347 256 .003c23.198-.354 56.596 29.172 73.413 41.433 118.687 86.137 139.303 101.995 164.2 121.512A48 48 0 0 1 512 200.724V464zm-65.666-196.605c-2.563-3.728-7.7-4.595-11.339-1.907-22.845 16.873-55.462 40.705-105.582 77.079-16.825 12.266-50.21 41.781-73.413 41.43-23.211.344-56.559-29.143-73.413-41.43-50.114-36.37-82.734-60.204-105.582-77.079-3.639-2.688-8.776-1.821-11.339 1.907l-9.072 13.196a7.998 7.998 0 0 0 1.839 10.967c22.887 16.899 55.454 40.69 105.303 76.868 20.274 14.781 56.524 47.813 92.264 47.573 35.724.242 71.961-32.771 92.263-47.573 49.85-36.179 82.418-59.97 105.303-76.868a7.998 7.998 0 0 0 1.839-10.967l-9.071-13.196z"
></path>
</svg>
</a>
</li>
</ul>
</div>
</section>
<section id="stack" class="page2">
<div class="codigo">
<p><br /></p>
<p class="to-reveal">
<span class="pink">import </span>
<span> { Injectable, Http, Headers } </span>
<span class="pink"> from </span>
<span class="yellow">"@angular/core"</span>
<span>;</span>
</p>
<br />
<p class="no-margin-bt to-reveal1">
<span>@</span>
<span class="green">Injectable</span>
<span>( )</span>
</p>
<br />
<p class="no-margin-bt to-reveal1-5">
<span class="pink">export class </span>
<span class="blue">UserProvider </span>
<span>{</span>
</p>
<br />
<p class="indentacao to-reveal2">
<span class="pink">constructor</span>
<span>(</span>
<span class="pink">public </span>
<span class="orange">http</span>
<span class="pink">: </span>
<span class="blue"> Http</span>
<span>) { }</span>
</p>
<br />
<p class="indentacao no-margin-bt to-reveal2-5">
<span class="green">getUsers</span>
<span>( ) {</span>
</p>
<br />
<p class="indentacao2 no-margin-bt to-reveal3">
<span class="pink">return </span>
<span class="purple littlelessmarginright">this</span>
<span>.http</span>
</p>
<br />
<p class="indentacao3 no-margin-bt to-reveal3-5">
<span class="littlelessmarginright">.</span>
<span class="green">get</span>
<span>(</span>
<span class="yellow">"https://localhost:3001/users"</span>
<span>)</span>
</p>
<br />
<p class="indentacao3 no-margin-bt to-reveal4">
<span class="littlelessmarginright">.</span>
<span class="green">map</span>
<span>( (</span>
<span class="orange">res</span>
<span>) </span>
<span class="pink"> => </span>
<span>res.</span>
<span class="green">json</span>
<span>( ) );</span>
</p>
<br />
<p class="indentacao to-reveal4-5">
<span>}</span>
</p>
<br />
<p class="indentacao no-margin-bt to-reveal5">
<span class="green">getUser</span>
<span>(</span>
<span class="orange">id</span>
<span class="pink">:</span>
<span class="blue">number</span>
<span>) {</span>
</p>
<br />
<p class="indentacao2 no-margin-bt to-reveal5-5">
<span class="pink">return </span>
<span class="purple littlelessmarginright">this</span>
<span>.http</span>
</p>
<br />
<p class="indentacao3 no-margin-bt to-reveal6">
<span class="littlelessmarginright">.</span>
<span class="green">get</span>
<span>(</span>
<span class="yellow">"https://localhost:3001/users/"</span>
<span class="pink"> + </span>
<span>id )</span>
</p>
<br />
<p class="indentacao3 no-margin-bt to-reveal6-5">
<span class="littlelessmarginright">.</span>
<span class="green">map</span>
<span>( (</span>
<span class="orange">res</span>
<span>) </span>
<span class="pink"> => </span>
<span>res.</span>
<span class="green">json</span>
<span>( ) );</span>
</p>
<br />
<p class="indentacao to-reveal7">
<span>}</span>
</p>
<br />
<p class="indentacao no-margin-bt to-reveal7-5">
<span class="green">addUser</span>
<span>(</span>
<span class="orange">username</span>
<span class="pink">:</span>
<span class="blue littlelessmarginright">string</span>
<span>, </span>
<span class="orange">password</span>
<span class="pink">:</span>
<span class="blue">string</span>
<span>) {</span>
</p>
<br />
<p class="indentacao2 no-margin-bt to-reveal8">
<span class="pink">let </span>
<span>credentials</span>
<span class="pink"> = </span>
<span>{</span>
</p>
<br />
<p class="indentacao3 no-margin-bt to-reveal8-5">
<span class="littlelessmarginright">username</span>
<span class="pink">:</span>
<span class="littlelessmarginright">username</span>
<span>,</span>
</p>
<br />
<p class="indentacao3 no-margin-bt to-reveal9">
<span class="littlelessmarginright">password</span>
<span class="pink">:</span>
<span class="littlelessmarginright"> password</span>
<span>,</span>
</p>
<br />
<p class="indentacao2 no-margin-bt to-reveal9-5">
<span>};</span>
</p>
<br />
<p class="indentacao2 no-margin-bt to-reveal10">
<span class="pink">return </span>
<span class="purple littlelessmarginright">this</span>
<span class="littlelessmarginright">.http.</span>
<span class="green">post</span>
<span>(</span>
</p>
<br />
<p class="indentacao3 no-margin-bt to-reveal10-5">
<span class="yellow littlelessmarginright"
>"https://localhost:3001/users"</span
>
<span>, </span>
</p>
<br />
<p class="indentacao3 no-margin-bt to-reveal11">
<span class="purple littlelessmarginright">JSON</span>
<span>.</span>
<span class="blue">stringify</span>
<span>(credentials)</span>
<br />
<span> );</span>
</p>
<br />
<p class="indentacao to-reveal11-5">
<span>}</span>
</p>
</div>
<div class="rows-container">
<div class="rows">
<div class="row">
<div class="column">
<div class="card">
<figure class="card java">
<img
class="responsive-img stack"
src="assets/imgs/java-logo.png"
/>
<figcaption>Java</figcaption>
</figure>
<ul>
<li class="li-image">
<img class="img-stck" src="assets/imgs/spring-logo.png" />
</li>
<li class="li-image">
<img class="img-stck" src="assets/imgs/quarkus.png" />
</li>
</ul>
<ul id="stack-ul">
<li class="stack-name">Spring</li>
<li class="stack-name">Quarkus</li>
</ul>
</div>
</div>
<div class="column">
<div class="card angular">
<figure class="card java">
<img
class="responsive-img stack"
src="assets/imgs/angular.png"
/>
<figcaption>Angular</figcaption>
</figure>
<ul>
<li class="li-image">
<img class="img-stck" src="assets/imgs/html.png" />
</li>
<li class="li-image">
<img class="img-stck" src="assets/imgs/css.png" />
</li>
<li class="li-image">
<img class="img-stck" src="assets/imgs/js.png" />
</li>
<li class="li-image">
<img class="img-stck" src="assets/imgs/sass.png" />
</li>
<li class="li-image">
<img class="img-stck" src="assets/imgs/ts.png" />
</li>
</ul>
<ul id="stack-ul">
<li class="stack-name">HTML</li>
<li class="stack-name">CSS</li>
<li class="stack-name">JavaScript</li>
<li class="stack-name">Sass</li>
<li class="stack-name">TypeScript</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="column">
<div class="card">
<figure class="card">
<img
class="responsive-img stack"
src="assets/imgs/postgre.png"
/>
<figcaption>PostgreSQL</figcaption>
</figure>
<figure class="card">
<img
class="responsive-img stack"
src="assets/imgs/mysql.png"
/>
<figcaption>MySQL</figcaption>
</figure>
<figure class="card">
<img
class="responsive-img stack"
src="assets/imgs/oracle.png"
/>
<figcaption>Oracle</figcaption>
</figure>
<figure class="card">
<img
class="responsive-img stack"
src="assets/imgs/firebase.png"
/>
<figcaption>Firebase</figcaption>
</figure>
</div>
</div>
<div class="column">
<div class="card">
<figure class="card">
<img
class="responsive-img stack"
src="assets/imgs/ionic-logo.png"
/>
<figcaption>Ionic</figcaption>
</figure>
<figure class="card">
<img
class="responsive-img stack"
src="assets/imgs/flutter.png"
/>
<figcaption>Flutter</figcaption>
</figure>
</div>
</div>
</div>
</div>
</div>
</section>
<section
style="background-color: #282a36"
class="section trick"
id="portfolio"
>
<div class="wrapper">
<a
target="_blank"
style="text-decoration: none"
href="https://autenticacao.oi.com.br/nidp/app/login?id=PortalOIContractCorp&sid=0&option=credential&sid=0"
>
<div class="item">
<img
class="img-port"
src="assets/imgs/sucesso360.jpg"
alt="Image 1"
/>
<h3>Sucesso360</h3>
<p>
Desenvolvimento do MVP do Portal Sucesso360 para a Oi Soluções
S/A, e DevOps (implantação e publicação do portal no servidor,
CI/CD)
</p>
</div>
</a>
<a
target="_blank"
style="text-decoration: none"
href="https://play.google.com/store/apps/details?id=br.com.abaco.educamt&hl=pt_BR&gl=US"
>
<div class="item">
<img
class="img-port"
src="assets/imgs/educamt.jpg"
alt="Image 1"
/>
<h3>EducaMT</h3>
<p>
Aplicativo educacional, desenvolvido em Ionic, também fui
responsável pelo CI/CD e publicação nas lojas
</p>
</div>
</a>
<a
target="_blank"
style="text-decoration: none"
href="https://apostebet.bet/pre/"
>
<div class="item">
<img
class="img-port"
src="assets/imgs/apostebet.jpg"
alt="Image 1"
/>
<h3>AposteBet</h3>
<p>
Plataforma de apostas esportivas, desenvolvido em PHP e Laravel
</p>
</div>
</img>
<a
target="_blank"
style="text-decoration: none"
href="https://simp3.mpma.mp.br/"
>
<div class="item">
<img class="img-port" src="assets/imgs/mpma.jpg" alt="Image 1" />
<h3>S.I.M.P.</h3>
<p>
Atualização de telas JSF, correção de bugs, implementação de
novas features de assinatura digital
</p>
</div>
</a>
<a
target="_blank"
style="text-decoration: none"
href="https://www.feministrampos.com.br/"
>
<div class="item">
<img
class="img-port"
src="assets/imgs/feministrampos.jpg"
alt="Image 1"
/>
<h3>FeminisTrampos</h3>
<p>Loja e marketplace, aplicativo feito com Flutter</p>
</div>
</a>
<a
target="_blank"
style="text-decoration: none"
href="https://www.instagram.com/vitarecorp/"
>
<div class="item">
<img
class="img-port"
src="assets/imgs/vitare.jpg"
alt="Image 1"
/>
<h3>Vitare Alunos</h3>
<p>PWA de acompanhamento de academia privada, feito em Flutter</p>
</div>
</a>
<a
target="_blank"
style="text-decoration: none"
href="https://dojapao.co.jp/"
>
<div class="item">
<img
class="img-port"
src="assets/imgs/dojapao.jpg"
alt="Image 1"
/>
<h3>DoJapão</h3>
<p>
Plataforma de redirecionamento de encomendas, feito com Angular
e Spring Boot
</p>
</div>
</a>
<a
target="_blank"
style="text-decoration: none"
href="https://www.totemti.com.br/automacao.html"
>
<div class="item">
<img
class="img-port"
src="assets/imgs/bravopdv.jpg"
alt="Image 1"
/>
<h3>BravoPDV</h3>
<p>
Adicionar integração com SMS e função de cupom e fidelidade, e
atualização das regras de NF-e, BravoPDV é um fork do
OpenbravoPOS
</p>
</div>
</a>
<!-- <div class="item">
<img
class="img-port"
src="assets/imgs/apostebet.jpg"
alt="Image 1"
/>
<h3>Title 1</h3>
<p>Description 1</p>
</div> -->
</div>
<!-- Repeat for other 8 items -->
</section>
<section id="curriculo" class="page4" style="user-select: none !important;">
<ul>
<li>
<div class="buttons-curriculo">
<a
class="button-curriculo"
href="assets/files/cv-gusdsl-en.pdf"
target="_blank"
>
<h4>BAIXAR CURRÍCULO</h4>
</a>
<!-- <a
class="button-curriculo"
href="assets/files/cv-gusdsl-en.pdf"
target="_blank"
>
<h4>CURRÍCULO</h4>
</a> -->
<select id="prompt" name="prompt">
<option value="exp">1: cmd</option>
<option value="line">─────────</option>
<option value="def">Select Default Shell</option>
</select>
<img src="assets/imgs/add.png" />
<img id="split" src="assets/imgs/split.png" />
<img id="trash" src="assets/imgs/trash.png" />
<img id="up" src="assets/imgs/up-arrow.png" />
<img id="close" src="assets/imgs/close.png" />
</div>
</li>
<li id="div-prompt">
<div class="experiencias">
<p id="primeira-linha" class="terminal">C:\experiencia>tree</p>
<p class="terminal">Listagem de caminhos de pasta</p>
<p class="terminal">O número de série do volume é TH3-B3ST</p>
<p class="terminal">C:.</p>
<p class="terminal">├───QIMA</p>
<p class="terminal">
│ ├───Engenheiro de Software
</p>
<p class="terminal">
│ │ └───jan de 2024 - jul de 2024
</p>
<p class="terminal">├───Mirante Tecnologia</p>
<p class="terminal">
│ ├───Desenvolvedor Sênior
</p>
<p class="terminal">
│ │ └───mai de 2023 - dez de 2023
</p>
<p class="terminal">├───Maminfo</p>
<p class="terminal">
│ ├───Desenvolvedor Sênior
</p>
<p class="terminal">
│ │ └───mar de 2022 - mai de
2023
</p>
<p class="terminal">├───Compass.uol</p>
<p class="terminal">
│ ├───Desenvolvedor Sênior
</p>
<p class="terminal">
│ │ └───out de 2021 - fev de
2022
</p>
<p class="terminal">└───Accenture Brasil</p>
<p class="terminal">
│ ├───Desenvolvedor Sênior
</p>
<p class="terminal">
│ │ └───jun de 2021 - set de
2021
</p>
<p class="terminal">
├───Tribunal de Contas do Estado de Mato Grosso
</p>
<p class="terminal">
│ ├───Desenvolvedor Full-Stack
</p>
<p class="terminal">
│ │ └───set de 2020 - mai de
2021
</p>
<!-- Updated experience for Ábaco Tecnologia de Informação -->
<p class="terminal">├───Ábaco Tecnologia de Informação</p>
<p class="terminal">
│ └───Desenvolvedor Mobile
</p>
<p class="terminal">
│ │ └───fev de 2020 - set de
2020
</p>
<!-- Previous experiences in reverse chronological order with date format -->
<p class="terminal">├───Totem TI</p>
<p class="terminal">
│ └───Estagiário de desenvolvimento fulltime
</p>
<p class="terminal">
│ │ └───ago de 2019 - jan de
2020
</p>
<p class="terminal">└───Unicus Desenvolvimento</p>
<p class="terminal">│ └───Analista de testes</p>
<p class="terminal">
│ │ └───mai de 2018 - jul de
2019
</p>
</div>
</li>
<li>
<br />
</li>
</ul>
</section>
</main>
<script src="js/scroll-out.js"></script>
<script src="js/parallax.min.js"></script>
<script type="text/javascript">
ScrollOut({
targets: "p",
});
var scene = document.getElementById("scene");
var parallaxInstance = new Parallax(scene);
</script>
<!--=============== SCROLL REVEAL ===============-->
<script src="assets/js/scrollreveal.min.js"></script>
<!--=============== SWIPER JS ===============-->
<script src="assets/js/swiper-bundle.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
<script src="assets/js/main.js"></script>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({
pageLanguage: 'auto', // Set your default page language
layout: google.translate.TranslateElement.InlineLayout.SIMPLE // Choose a layout style
}, 'google_translate_element');
}
googleTranslateElementInit();
</script>
</body>
</html>