-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1159 lines (1151 loc) · 96.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<title>Randy Quindai</title>
<meta name="description"
content="Randy Quindai is a software engineer who builds cutting-edge products and crafting innovative software solutions.">
<meta name="image" content=".">
<meta property="og:locale" content="en_US">
<meta property="og:site_name" content="Randy Quindai">
<meta property="og:type" content="website">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:creator" content="@rquindai">
<meta property="twitter:site" content="@rquindai">
<meta property="og:title" content="Randy Quindai">
<meta property="og:description"
content="Randy Quindai is a software engineer who builds cutting-edge products and crafting innovative software solutions.">
<meta property="og:url" content="/">
<meta property="og:image" content="./quindaifiles/randrainbow.png">
<meta property="twitter:title" content="Randy Quindai">
<meta property="twitter:description"
content="Randy Quindai is a software engineer who builds cutting-edge products and crafting innovative software solutions.">
<meta property="twitter:url" content="..">
<meta property="twitter:image" content="./quindaifiles/randrainbow.png">
<link rel="icon" type="image/png" sizes="512x192"
href="https://brittanychiang.com/favicon/android-chrome-512x512.png">
<link rel="icon" type="image/png" sizes="192x192" href="./quindaifiles/randrainbow.png">
<link rel="apple-touch-icon" sizes="180x180" href="./quindaifiles/randrainbow.png">
<link rel="icon" type="image/png" sizes="32x32" href="./quindaifiles/randrainbow.png">
<link rel="icon" type="image/png" sizes="16x16" href="./quindaifiles/randrainbow.png">
<meta name="msapplication-TileColor" content="#0f172a">
<meta name="theme-color" content="#0f172a">
<meta name="next-head-count" content="29">
<link rel="preload" href="./quindaifiles/730e8169368baf37-s.p.woff2" as="font" type="font/woff2"
crossorigin="anonymous" data-next-font="size-adjust">
<link rel="preload" href="./quindaifiles/f1f0c35b32161446-s.p.woff2" as="font" type="font/woff2"
crossorigin="anonymous" data-next-font="size-adjust">
<link rel="preload" href="./quindaifiles/d593a8df799d4ab1-s.p.woff2" as="font" type="font/woff2"
crossorigin="anonymous" data-next-font="size-adjust">
<link rel="preload" href="./quindaifiles/dc792b508e6f91c7-s.p.woff2" as="font" type="font/woff2"
crossorigin="anonymous" data-next-font="size-adjust">
<link rel="preload" href="./quindaifiles/84d3493a9fd22f1c-s.p.woff2" as="font" type="font/woff2"
crossorigin="anonymous" data-next-font="size-adjust">
<link rel="preload" href="./quindaifiles/fcb100c7607696fd-s.p.woff2" as="font" type="font/woff2"
crossorigin="anonymous" data-next-font="size-adjust">
<link rel="preload" href="./quindaifiles/d90f295d0c348006-s.p.woff2" as="font" type="font/woff2"
crossorigin="anonymous" data-next-font="size-adjust">
<link rel="preload" href="./quindaifiles/579e0f95cacfae57-s.p.woff2" as="font" type="font/woff2"
crossorigin="anonymous" data-next-font="size-adjust">
<link rel="preload" href="./quindaifiles/828a494e04a45cbd-s.p.woff2" as="font" type="font/woff2"
crossorigin="anonymous" data-next-font="size-adjust">
<link rel="preload" href="./quindaifiles/b822cfde573c2504.css" as="style">
<link rel="stylesheet" href="./quindaifiles/b822cfde573c2504.css" data-n-g=""><noscript data-n-css=""></noscript>
<script defer="" nomodule="" src="./quindaifiles/polyfills-c67a75d1b6f99dc8.js.download"></script>
<script src="./quindaifiles/webpack-5146130448d8adf7.js.download" defer=""></script>
<script src="./quindaifiles/framework-2c79e2a64abdb08b.js.download" defer=""></script>
<script src="./quindaifiles/main-342b3f0888afe918.js.download" defer=""></script>
<script src="./quindaifiles/_app-5531e5a306da5e32.js.download" defer=""></script>
<script src="./quindaifiles/664-09cd891ecc3af1d0.js.download" defer=""></script>
<script src="./quindaifiles/506-95c309a4d817bb8b.js.download" defer=""></script>
<script src="./quindaifiles/index-a4063e70b5d84154.js.download" defer=""></script>
<script src="./quindaifiles/_buildManifest.js.download" defer=""></script>
<script src="./quindaifiles/_ssgManifest.js.download" defer=""></script>
</head>
<body class="bg-slate-900 leading-relaxed text-slate-400 antialiased selection:bg-teal-300 selection:text-teal-900">
<div id="__next">
<div class="__variable_20b187 group/spotlight relative">
<div class="pointer-events-none fixed inset-0 z-30 transition duration-300 lg:absolute"
style="background: radial-gradient(600px at 622px 383px, rgba(29, 78, 216, 0.15), transparent 80%);"></div>
<div class="mx-auto min-h-screen max-w-screen-xl px-6 py-12 font-sans md:px-12 md:py-20 lg:px-24 lg:py-0"><a
href="/#content"
class="absolute left-0 top-0 block -translate-x-full rounded bg-gradient-to-br from-teal-400 via-blue-500 to-purple-600 px-4 py-3 text-sm font-bold uppercase tracking-widest text-white focus-visible:translate-x-0">Skip
to Content</a>
<div class="lg:flex lg:justify-between lg:gap-4">
<header class="lg:sticky lg:top-0 lg:flex lg:max-h-screen lg:w-1/2 lg:flex-col lg:justify-between lg:py-24">
<div>
<h1 class="text-4xl font-bold tracking-tight text-slate-200 sm:text-5xl"><a href="/">Randy Quindai</a>
</h1>
<h2 class="mt-3 text-lg font-medium tracking-tight text-slate-200 sm:text-xl">Manager Engineer at LaCCAN
</h2>
<p class="mt-4 max-w-xs leading-normal">"I excel in full-stack product development, from concept to
deployment,
leveraging expertise in both front-end and back-end technologies to create resilient systems
that surpass user expectations.</p>
<nav class="nav hidden lg:block" aria-label="In-page jump links">
<ul class="mt-16 w-max">
<li><a class="group flex items-center py-3 active" href="#about"><span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span><span
class="nav-text text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">About</span></a>
</li>
<li><a class="group flex items-center py-3 " href="#experience"><span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span><span
class="nav-text text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Experience</span></a>
</li>
<li><a class="group flex items-center py-3 " href="#projects"><span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span><span
class="nav-text text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Projects</span></a>
</li>
</ul>
</nav>
</div>
<ul class="ml-1 mt-8 flex items-center" aria-label="Social media">
<li class="mr-5 text-xs shrink-0"><a class="block hover:text-slate-200" href="https://github.com/quindai"
target="_blank" rel="noreferrer noopener" aria-label="GitHub (opens in a new tab)"
title="GitHub"><span class="sr-only">GitHub</span><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16" fill="currentColor" class="h-6 w-6" aria-hidden="true">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z">
</path>
</svg></a></li>
<li class="mr-5 text-xs shrink-0"><a class="block hover:text-slate-200"
href="https://www.linkedin.com/in/randyquindai/" target="_blank" rel="noreferrer noopener"
aria-label="LinkedIn (opens in a new tab)" title="LinkedIn"><span class="sr-only">LinkedIn</span><svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="h-6 w-6"
aria-hidden="true">
<path
d="M20.5 2h-17A1.5 1.5 0 002 3.5v17A1.5 1.5 0 003.5 22h17a1.5 1.5 0 001.5-1.5v-17A1.5 1.5 0 0020.5 2zM8 19H5v-9h3zM6.5 8.25A1.75 1.75 0 118.3 6.5a1.78 1.78 0 01-1.8 1.75zM19 19h-3v-4.74c0-1.42-.6-1.93-1.38-1.93A1.74 1.74 0 0013 14.19a.66.66 0 000 .14V19h-3v-9h2.9v1.3a3.11 3.11 0 012.7-1.4c1.55 0 3.36.86 3.36 3.66z">
</path>
</svg></a></li>
<li class="mr-5 text-xs shrink-0"><a class="block hover:text-slate-200"
href="https://instagram.com/quindai" target="_blank" rel="noreferrer noopener"
aria-label="Instagram (opens in a new tab)" title="Instagram"><span
class="sr-only">Instagram</span><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"
fill="currentColor" class="h-6 w-6" aria-hidden="true">
<path
d="M295.42,6c-53.2,2.51-89.53,11-121.29,23.48-32.87,12.81-60.73,30-88.45,57.82S40.89,143,28.17,175.92c-12.31,31.83-20.65,68.19-23,121.42S2.3,367.68,2.56,503.46,3.42,656.26,6,709.6c2.54,53.19,11,89.51,23.48,121.28,12.83,32.87,30,60.72,57.83,88.45S143,964.09,176,976.83c31.8,12.29,68.17,20.67,121.39,23s70.35,2.87,206.09,2.61,152.83-.86,206.16-3.39S799.1,988,830.88,975.58c32.87-12.86,60.74-30,88.45-57.84S964.1,862,976.81,829.06c12.32-31.8,20.69-68.17,23-121.35,2.33-53.37,2.88-70.41,2.62-206.17s-.87-152.78-3.4-206.1-11-89.53-23.47-121.32c-12.85-32.87-30-60.7-57.82-88.45S862,40.87,829.07,28.19c-31.82-12.31-68.17-20.7-121.39-23S637.33,2.3,501.54,2.56,348.75,3.4,295.42,6m5.84,903.88c-48.75-2.12-75.22-10.22-92.86-17-23.36-9-40-19.88-57.58-37.29s-28.38-34.11-37.5-57.42c-6.85-17.64-15.1-44.08-17.38-92.83-2.48-52.69-3-68.51-3.29-202s.22-149.29,2.53-202c2.08-48.71,10.23-75.21,17-92.84,9-23.39,19.84-40,37.29-57.57s34.1-28.39,57.43-37.51c17.62-6.88,44.06-15.06,92.79-17.38,52.73-2.5,68.53-3,202-3.29s149.31.21,202.06,2.53c48.71,2.12,75.22,10.19,92.83,17,23.37,9,40,19.81,57.57,37.29s28.4,34.07,37.52,57.45c6.89,17.57,15.07,44,17.37,92.76,2.51,52.73,3.08,68.54,3.32,202s-.23,149.31-2.54,202c-2.13,48.75-10.21,75.23-17,92.89-9,23.35-19.85,40-37.31,57.56s-34.09,28.38-57.43,37.5c-17.6,6.87-44.07,15.07-92.76,17.39-52.73,2.48-68.53,3-202.05,3.29s-149.27-.25-202-2.53m407.6-674.61a60,60,0,1,0,59.88-60.1,60,60,0,0,0-59.88,60.1M245.77,503c.28,141.8,115.44,256.49,257.21,256.22S759.52,643.8,759.25,502,643.79,245.48,502,245.76,245.5,361.22,245.77,503m90.06-.18a166.67,166.67,0,1,1,167,166.34,166.65,166.65,0,0,1-167-166.34">
</path>
</svg></a></li>
<li class="mr-5 text-xs shrink-0"><a class="block hover:text-slate-200"
href="https://twitter.com/rquindai" target="_blank" rel="noreferrer noopener"
aria-label="Twitter (opens in a new tab)" title="Twitter"><span class="sr-only">Twitter</span><svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 1227" fill="none" class="h-5 w-5"
aria-hidden="true">
<path
d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z"
fill="currentColor"></path>
</svg></a></li>
</ul>
</header>
<main id="content" class="pt-24 lg:w-1/2 lg:py-24">
<section id="about" class="mb-16 scroll-mt-16 md:mb-24 lg:mb-36 lg:scroll-mt-24" aria-label="About me">
<div
class="sticky top-0 z-20 -mx-6 mb-4 w-screen bg-slate-900/75 px-6 py-5 backdrop-blur md:-mx-12 md:px-12 lg:sr-only lg:relative lg:top-auto lg:mx-auto lg:w-full lg:px-0 lg:py-0 lg:opacity-0">
<h2 class="text-sm font-bold uppercase tracking-widest text-slate-200 lg:sr-only">About</h2>
</div>
<div>
<p class="mb-4">Back in 2018, I decided to shift my focus from scientific research
to industry software development and data engineering and tumbled head first into
SOLID principles.
Fast-forward to today, and I’ve had the privilege of building software for a
<a class="font-medium text-slate-200 hover:text-teal-300 focus-visible:text-teal-300"
href="https://atria.org" target="_blank" rel="noreferrer noopener"
aria-label="health company (opens in a new tab)">health company</a>, a<!-- -->
<a class="font-medium text-slate-200 hover:text-teal-300 focus-visible:text-teal-300"
href="http://qquant.online" target="_blank" rel="noreferrer noopener"
aria-label="start-up (opens in a new tab)">start-up</a>, and for clients of a<!-- -->
<a class="font-medium text-slate-200 hover:text-teal-300 focus-visible:text-teal-300"
href="https://www.laccan.ufal.br" target="_blank" rel="noreferrer noopener"
aria-label="huge corporation (opens in a new tab)">huge corporation</a>.
</p>
<p class="mb-4">My main focus these days is building products and leading projects for our clients
at<!-- --> <a class="font-medium text-slate-200 hover:text-teal-300 focus-visible:text-teal-300"
href="http://www.laccan.ufal.br/" target="_blank" rel="noreferrer noopener"
aria-label="Upstatement (opens in a new tab)">LaCCAN</a>. I most enjoy building software in the
sweet spot where complex algorithms and engineering meet — things that look good but are also built
well under the
hood.
</p>
<p>When I’m not at the computer, I’m usually working out at the gym, reading, hanging out with my wife,
or cycling on the beach avenue<!-- -->.</p>
</div>
</section>
<section id="experience" class="mb-16 scroll-mt-16 md:mb-24 lg:mb-36 lg:scroll-mt-24"
aria-label="Work experience">
<div
class="sticky top-0 z-20 -mx-6 mb-4 w-screen bg-slate-900/75 px-6 py-5 backdrop-blur md:-mx-12 md:px-12 lg:sr-only lg:relative lg:top-auto lg:mx-auto lg:w-full lg:px-0 lg:py-0 lg:opacity-0">
<h2 class="text-sm font-bold uppercase tracking-widest text-slate-200 lg:sr-only">Experience</h2>
</div>
<div>
<ol class="group/list">
<li class="mb-12">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:!opacity-100 lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="2018 to Present">2023 — Present</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div><a
class="inline-flex items-baseline font-medium leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-base"
href="http://www.laccan.ufal.br" target="_blank" rel="noreferrer noopener"
aria-label="Manager Engineer at LaCCAN (opens in a new tab)"><span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded md:-inset-x-6 md:-inset-y-4 lg:block"></span><span>Manager
Engineer ·<!-- --> <span class="inline-block">LaCCAN<svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span></span></a></div>
<div>
<div class="text-slate-500" aria-hidden="true">Senior Engineer</div>
</div>
<div>
<div class="text-slate-500" aria-hidden="true">Engineer</div>
</div>
</h3>
<p class="mt-2 text-sm leading-normal">Devising software testing strategies,
planning software product improvements, monitoring, reporting on the project progress,
data analysis and tracking metrics.
Build high-quality websites, design
systems, build data pipelines, help with mobile apps and
with complex algorithms for a diverse array of
projects for clients
including Secretaria de Tecnologia do Estado de Alagoas (Secti),
Secretaria da Fazenda (Sefaz), FAPEAL and more. Provide leadership within engineering
department through close collaboration, knowledge shares, and spearheading the development of
internal tools.</p>
<ul class="mt-2 flex flex-wrap" aria-label="Technologies used">
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
JavaScript</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
TypeScript</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
HTML & SCSS</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
MySQL</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Postgres</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
MongoDB</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Redis</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Docker</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Linux</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Django</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
React Native</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Python</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Numpy</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Spark</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Airflow</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
GitLab</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Node.js</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Pandas</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
R</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
C++</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
ELK STACK</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Jira</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
SOLID</div>
</li>
</ul>
</div>
</div>
</li>
<li class="mb-12">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:!opacity-100 lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="July to December 2017">July — Dec 2022</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div><a
class="inline-flex items-baseline font-medium leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-base"
href="https://atria.org" target="_blank" rel="noreferrer noopener"
aria-label="SRE Engineer at Atria (opens in a new tab)"><span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded md:-inset-x-6 md:-inset-y-4 lg:block"></span><span>SRE
Engineer ·<!-- --> <span class="inline-block">Atria<svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span></span></a></div>
</h3>
<p class="mt-2 text-sm leading-normal">Developed and maintained the internal Django API,
support the mobile app developed by a third party, incident escalation and
troubleshooting, documentation of processess and evaluation of incidents after resolution.</p>
<ul class="mt-2 flex flex-wrap" aria-label="Related links">
<li class="mr-4"><a
class="relative mt-2 inline-flex items-center text-sm font-medium text-slate-300 hover:text-teal-300 focus-visible:text-teal-300"
href="https://apps.apple.com/br/app/atria/id1554347528?platform=iphone" target="_blank"
rel="noreferrer noopener" aria-label="Atria Health App (opens in a new tab)"><svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
class="mr-1 h-3 w-3" aria-hidden="true">
<path
d="M12.232 4.232a2.5 2.5 0 013.536 3.536l-1.225 1.224a.75.75 0 001.061 1.06l1.224-1.224a4 4 0 00-5.656-5.656l-3 3a4 4 0 00.225 5.865.75.75 0 00.977-1.138 2.5 2.5 0 01-.142-3.667l3-3z">
</path>
<path
d="M11.603 7.963a.75.75 0 00-.977 1.138 2.5 2.5 0 01.142 3.667l-3 3a2.5 2.5 0 01-3.536-3.536l1.225-1.224a.75.75 0 00-1.061-1.06l-1.224 1.224a4 4 0 105.656 5.656l3-3a4 4 0 00-.225-5.865z">
</path>
</svg><span>Atria App</span></a></li>
<!--li class="mr-4"><a
class="relative mt-2 inline-flex items-center text-sm font-medium text-slate-300 hover:text-teal-300 focus-visible:text-teal-300"
href="https://9to5mac.com/2018/06/03/apple-music-embeddable-web-player-listen-browser/"
target="_blank" rel="noreferrer noopener" aria-label="9to5Mac (opens in a new tab)"><svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
class="mr-1 h-3 w-3" aria-hidden="true">
<path
d="M12.232 4.232a2.5 2.5 0 013.536 3.536l-1.225 1.224a.75.75 0 001.061 1.06l1.224-1.224a4 4 0 00-5.656-5.656l-3 3a4 4 0 00.225 5.865.75.75 0 00.977-1.138 2.5 2.5 0 01-.142-3.667l3-3z">
</path>
<path
d="M11.603 7.963a.75.75 0 00-.977 1.138 2.5 2.5 0 01.142 3.667l-3 3a2.5 2.5 0 01-3.536-3.536l1.225-1.224a.75.75 0 00-1.061-1.06l-1.224 1.224a4 4 0 105.656 5.656l3-3a4 4 0 00-.225-5.865z">
</path>
</svg><span>9to5Mac</span></a></li-->
</ul>
<ul class="mt-2 flex flex-wrap" aria-label="Technologies used">
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
CircleCI</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Jira</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
GitLab</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Django</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
React Native</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
PagerDuty</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Grafana</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Kibana</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Python</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Next.js</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Node.js</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Postgres</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
SOLID</div>
</li>
</ul>
</div>
</div>
</li>
<li class="mb-12">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:!opacity-100 lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="2016 to 2017">2020 — 2022</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div><a
class="inline-flex items-baseline font-medium leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-base"
href="http://qquant.online" target="_blank" rel="noreferrer noopener"
aria-label="Founder at Qquant (opens in a new tab)"><span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded md:-inset-x-6 md:-inset-y-4 lg:block"></span><span>Founder
· <!-- --> <span class="inline-block">Qquant<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span></span></a></div>
</h3>
<p class="mt-2 text-sm leading-normal">Founded and led a groundbreaking startup,
spearheading the entire spectrum of technology initiatives to bring our vision to life.
Instrumental in the end-to-end development of the company's digital ecosystem:
Website Development, AI Model Development and AWS Infra and Microservices.
This experience showcases my entrepreneurial spirit, technical proficiency,
and leadership skills in steering a startup from conception to a thriving, technology-driven
entity.
Built and maintained the infrastructure, 4 EC2 Machines (Linux), 7 Lambda Functions,
2 RDS Databases, 2 Glue Pipelines, 1 Athena endpoint, AWS SES.</p>
<ul class="mt-2 flex flex-wrap" aria-label="Related links">
<li class="mr-4"><a
class="relative mt-2 inline-flex items-center text-sm font-medium text-slate-300 hover:text-teal-300 focus-visible:text-teal-300"
href="https://www.cadaminuto.com.br/noticia/2021/09/13/startup-alagoana-desenvolve-ferramenta-que-facilita-pesquisa-cientifica"
target="_blank" rel="noreferrer noopener"
aria-label="Highlights page (opens in a new tab)"><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor" class="mr-1 h-3 w-3" aria-hidden="true">
<path
d="M12.232 4.232a2.5 2.5 0 013.536 3.536l-1.225 1.224a.75.75 0 001.061 1.06l1.224-1.224a4 4 0 00-5.656-5.656l-3 3a4 4 0 00.225 5.865.75.75 0 00.977-1.138 2.5 2.5 0 01-.142-3.667l3-3z">
</path>
<path
d="M11.603 7.963a.75.75 0 00-.977 1.138 2.5 2.5 0 01.142 3.667l-3 3a2.5 2.5 0 01-3.536-3.536l1.225-1.224a.75.75 0 00-1.061-1.06l-1.224 1.224a4 4 0 105.656 5.656l3-3a4 4 0 00-.225-5.865z">
</path>
</svg><span>Highlights</span></a></li>
<li class="mr-4"><a
class="relative mt-2 inline-flex items-center text-sm font-medium text-slate-300 hover:text-teal-300 focus-visible:text-teal-300"
href="https://news.samsung.com/br/intensivo-9-do-samsung-ocean-gradua-10-startups-de-cinco-estados-e-seis-areas-diferentes#:~:text=Qquant"
target="_blank" rel="noreferrer noopener"
aria-label="Intensivo 9 Qquant on Samsung page (opens in a new tab)"><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor" class="mr-1 h-3 w-3" aria-hidden="true">
<path
d="M12.232 4.232a2.5 2.5 0 013.536 3.536l-1.225 1.224a.75.75 0 001.061 1.06l1.224-1.224a4 4 0 00-5.656-5.656l-3 3a4 4 0 00.225 5.865.75.75 0 00.977-1.138 2.5 2.5 0 01-.142-3.667l3-3z">
</path>
<path
d="M11.603 7.963a.75.75 0 00-.977 1.138 2.5 2.5 0 01.142 3.667l-3 3a2.5 2.5 0 01-3.536-3.536l1.225-1.224a.75.75 0 00-1.061-1.06l-1.224 1.224a4 4 0 105.656 5.656l3-3a4 4 0 00-.225-5.865z">
</path>
</svg><span>Samsung</span></a></li>
</ul>
<ul class="mt-2 flex flex-wrap" aria-label="Technologies used">
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
AWS</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Linux</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Django</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
JavaScript</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Node.js</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Next.js</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Gunicorn</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
PM2</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
NGINX</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
MongoDB</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Postgres</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Python</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Django RestFramework</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Redis</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
NLTK</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
spaCy</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
ELK STACK</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Terraform</div>
</li>
</ul>
</div>
</div>
</li>
<li class="mb-12">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:!opacity-100 lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="January 2018 to June 2020">Jan 2018 — Jun 2020</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div><a
class="inline-flex items-baseline font-medium leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-base"
href="http://www.laccan.ufal.br" target="_blank" rel="noreferrer noopener"
aria-label="Software Engineer at LaCCAN (opens in a new tab)"><span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded md:-inset-x-6 md:-inset-y-4 lg:block"></span><span>Software
Engineer ·<!-- --> <span class="inline-block">LaCCAN<svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span></span></a></div>
</h3>
<p class="mt-2 text-sm leading-normal">Worked with the backend team to engineer and improve
major
features of CALT returning a monetary income of R$315M. I built LLM models to identify
problems
in filling out invoices in goods transit operations.</p>
<ul class="mt-2 flex flex-wrap" aria-label="Related links">
<li class="mr-4"><a
class="relative mt-2 inline-flex items-center text-sm font-medium text-slate-300 hover:text-teal-300 focus-visible:text-teal-300"
href="https://sites.google.com/laccan.ufal.br/laccan/inova%C3%A7%C3%A3o?authuser=0"
target="_blank" rel="noreferrer noopener"
aria-label="Highlights page (opens in a new tab)"><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor" class="mr-1 h-3 w-3" aria-hidden="true">
<path
d="M12.232 4.232a2.5 2.5 0 013.536 3.536l-1.225 1.224a.75.75 0 001.061 1.06l1.224-1.224a4 4 0 00-5.656-5.656l-3 3a4 4 0 00.225 5.865.75.75 0 00.977-1.138 2.5 2.5 0 01-.142-3.667l3-3z">
</path>
<path
d="M11.603 7.963a.75.75 0 00-.977 1.138 2.5 2.5 0 01.142 3.667l-3 3a2.5 2.5 0 01-3.536-3.536l1.225-1.224a.75.75 0 00-1.061-1.06l-1.224 1.224a4 4 0 105.656 5.656l3-3a4 4 0 00-.225-5.865z">
</path>
</svg><span>Highlights</span></a></li>
</ul>
<ul class="mt-2 flex flex-wrap" aria-label="Technologies used">
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
NLTK</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Python</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Spark</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Django</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Pandas</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Pytorch</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
scikit-learn</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Gensim</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
R</div>
</li>
</ul>
</div>
</div>
</li>
</ol>
<div class="mt-12"><a
class="inline-flex items-baseline font-medium leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 font-semibold text-slate-200 group/link text-base"
href="https://quindai.github.io/resume.pdf" target="_blank" rel="noreferrer noopener"
aria-label="View Full Résumé (opens in a new tab)"><span>View Full<!-- --> <span
class="inline-block">Résumé<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"
fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span></span></a></div>
</div>
</section>
<section id="projects" class="mb-16 scroll-mt-16 md:mb-24 lg:mb-36 lg:scroll-mt-24"
aria-label="Selected projects">
<div
class="sticky top-0 z-20 -mx-6 mb-4 w-screen bg-slate-900/75 px-6 py-5 backdrop-blur md:-mx-12 md:px-12 lg:sr-only lg:relative lg:top-auto lg:mx-auto lg:w-full lg:px-0 lg:py-0 lg:opacity-0">
<h2 class="text-sm font-bold uppercase tracking-widest text-slate-200 lg:sr-only">Projects</h2>
</div>
<div>
<ul class="group/list">
<li class="mb-12">
<div
class="group relative grid gap-4 pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:!opacity-100 lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<div class="z-10 sm:order-2 sm:col-span-6">
<h3><a
class="inline-flex items-baseline font-medium leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-base"
href="https://nodeschool.io/hexdex.html" target="_blank" rel="noreferrer noopener"
aria-label="Build a Spotify Connected App (opens in a new tab)"><span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded md:-inset-x-6 md:-inset-y-4 lg:block"></span><span>Get
Going <!-- -->
<span class="inline-block">NodeSchool<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span></span></a></h3>
<p class="mt-2 text-sm leading-normal">NodeJS workshopper builder event for all levels of
experience.
Workshopper is the name used for the open source lesson modules associated with NodeSchool. I
founded the
Luanda chapter of NodeSchool and organized the first event in Angola. I also created the first
workshopper
for the event. Topics covered include the principles of asynchronous i/o, functional
programming, Express.js,
React, debugging skills, production web optimizations and more.</p> <!-- -->
<ul class="mt-2 flex flex-wrap" aria-label="Related links">
<li class="mr-4"><a
class="relative mt-2 inline-flex items-center text-sm font-medium text-slate-300 hover:text-teal-300 focus-visible:text-teal-300"
href="https://github.com/nodeschool/luanda" target="_blank"
rel="noreferrer noopener" aria-label="105 people watching the repo (opens in a new tab)">
<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 54 54" fill="currentColor" class="mr-1 h-3 w-3" aria-hidden="true">
<path xmlns="http://www.w3.org/2000/svg" d="M32.513,13.926c10.574,0.15 19.141,9.894 23.487,18.074c0,0 -1.422,2.892 -2.856,4.895c-0.694,0.969 -1.424,1.913 -2.191,2.826c-0.547,0.65 -1.112,1.283 -1.698,1.898c-5.237,5.5 -12.758,9.603 -20.7,8.01c-8.823,-1.77 -15.732,-9.498 -20.058,-17.629c0,0 1.248,-2.964 2.69,-4.964c0.646,-0.897 1.324,-1.77 2.034,-2.617c0.544,-0.649 1.108,-1.282 1.691,-1.897c4.627,-4.876 10.564,-8.63 17.601,-8.596Zm-0.037,4c-5.89,-0.022 -10.788,3.267 -14.663,7.35c-0.527,0.555 -1.035,1.127 -1.527,1.713c-0.647,0.772 -1.265,1.569 -1.854,2.386c-0.544,0.755 -1.057,1.805 -1.451,2.59c3.773,6.468 9.286,12.323 16.361,13.742c6.563,1.317 12.688,-2.301 17.016,-6.846c0.529,-0.555 1.04,-1.128 1.534,-1.715c0.7,-0.833 1.366,-1.694 1.999,-2.579c0.557,-0.778 1.144,-1.767 1.588,-2.567c-3.943,-6.657 -10.651,-13.944 -19.003,-14.074Z"/>
<path xmlns="http://www.w3.org/2000/svg" d="M32.158,23.948c4.425,0 8.018,3.593 8.018,8.017c0,4.425 -3.593,8.017 -8.018,8.017c-4.424,0 -8.017,-3.592 -8.017,-8.017c0,-4.424 3.593,-8.017 8.017,-8.017Zm0,4.009c2.213,0 4.009,1.796 4.009,4.008c0,2.213 -1.796,4.009 -4.009,4.009c-2.212,0 -4.008,-1.796 -4.008,-4.009c0,-2.212 1.796,-4.008 4.008,-4.008Z"/>
</svg><span>105</span></a></li>
<li class="mr-4"><a
class="relative mt-2 inline-flex items-center text-sm font-medium text-slate-300 hover:text-teal-300 focus-visible:text-teal-300"
href="https://www.menosfios.com/foi-realizado-a-primeira-edicao-do-nodeschool-luanda/"
target="_blank" rel="noreferrer noopener" aria-label="Midia about the event (opens in a new tab)">
<svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
class="mr-1 h-3 w-3" aria-hidden="true">
<path
d="M12.232 4.232a2.5 2.5 0 013.536 3.536l-1.225 1.224a.75.75 0 001.061 1.06l1.224-1.224a4 4 0 00-5.656-5.656l-3 3a4 4 0 00.225 5.865.75.75 0 00.977-1.138 2.5 2.5 0 01-.142-3.667l3-3z">
</path>
<path
d="M11.603 7.963a.75.75 0 00-.977 1.138 2.5 2.5 0 01.142 3.667l-3 3a2.5 2.5 0 01-3.536-3.536l1.225-1.224a.75.75 0 00-1.061-1.06l-1.224 1.224a4 4 0 105.656 5.656l3-3a4 4 0 00-.225-5.865z">
</path>
</svg><span>Menos Fios</span></a></li>
<li class="mr-4"><a
class="relative mt-2 inline-flex items-center text-sm font-medium text-slate-300 hover:text-teal-300 focus-visible:text-teal-300"
href="https://ti.to/quindai/nodeschool-luanda"
target="_blank" rel="noreferrer noopener" aria-label="The Luanda nodeschool event site (opens in a new tab)"><svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
class="mr-1 h-3 w-3" aria-hidden="true">
<path
d="M12.232 4.232a2.5 2.5 0 013.536 3.536l-1.225 1.224a.75.75 0 001.061 1.06l1.224-1.224a4 4 0 00-5.656-5.656l-3 3a4 4 0 00.225 5.865.75.75 0 00.977-1.138 2.5 2.5 0 01-.142-3.667l3-3z">
</path>
<path
d="M11.603 7.963a.75.75 0 00-.977 1.138 2.5 2.5 0 01.142 3.667l-3 3a2.5 2.5 0 01-3.536-3.536l1.225-1.224a.75.75 0 00-1.061-1.06l-1.224 1.224a4 4 0 105.656 5.656l3-3a4 4 0 00-.225-5.865z">
</path>
</svg><span>Site</span></a></li>
</ul>
</div><img alt="NodeSchool Luanda HexDex" loading="lazy" width="200" height="48" decoding="async"
data-nimg="1"
class="rounded border-2 border-slate-200/10 transition group-hover:border-slate-200/30 sm:order-1 sm:col-span-2 sm:translate-y-1"
style="color:transparent" src="https://nodeschool.io/images/nodeschool-luanda.png">
</div>
</li>
<li class="mb-12">
<div
class="group relative grid gap-4 pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:!opacity-100 lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<div class="z-10 sm:order-2 sm:col-span-6">
<h3><a
class="inline-flex items-baseline font-medium leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-base"
href="https://oxetech.al.gov.br/" target="_blank" rel="noreferrer noopener"
aria-label="OxeTech Alagoas (opens in a new tab)"><span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded md:-inset-x-6 md:-inset-y-4 lg:block"></span><span>OxeTech<!-- -->
<span class="inline-block">Alagoas<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span></span></a></h3>
<p class="mt-2 text-sm leading-normal">Web App designed to democratize access to science, technology,
and innovation through freely accessible online courses. It seamlessly integrates with student training,
directly preparing them for job opportunities in the ever-evolving technological market.
Connects companies with freshly trained talents.</p><a
class="relative mt-2 inline-flex items-center text-sm font-medium text-slate-300 hover:text-teal-300 focus-visible:text-teal-300"
href="https://oxetech.al.gov.br/inovation-map" target="_blank" rel="noreferrer noopener"
aria-label="596 stars on GitHub (opens in a new tab)"><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="currentColor" class="mr-1 h-3 w-3" aria-hidden="true">
<path xmlns="http://www.w3.org/2000/svg" id="map-pin-Filled-2" data-name="map-pin-Filled" class="cls-1" d="M6.5,7.5A5.5,5.5,0,1,1,13,12.9V17a1,1,0,0,1-2,0V12.9A5.506,5.506,0,0,1,6.5,7.5Zm8.7,6.81a1,1,0,0,0-.4,1.961C16.983,16.712,18,17.563,18,18c0,.7-2.278,2-6,2s-6-1.3-6-2c0-.437,1.017-1.288,3.2-1.729a1,1,0,0,0-.4-1.961C5.8,14.918,4,16.3,4,18c0,2.626,4.024,4,8,4s8-1.374,8-4C20,16.3,18.2,14.918,15.2,14.31Z"/>
</svg><span>Innovation Map</span></a>
<ul class="mt-2 flex flex-wrap" aria-label="Technologies used:">
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
React</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Express</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Node.js</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Redis</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Postgres</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Docker</div>
</li>
</ul>
</div><img alt="Oxetech Logo homepage" loading="lazy" width="200" height="48"
decoding="async" data-nimg="1"
class="rounded border-2 border-slate-200/10 transition group-hover:border-slate-200/30 sm:order-1 sm:col-span-2 sm:translate-y-1"
style="color:transparent"
src="data:image/png;base64,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">
</div>
</li>
<li class="mb-12">
<div
class="group relative grid gap-4 pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:!opacity-100 lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<div class="z-10 sm:order-2 sm:col-span-6">
<h3><a
class="inline-flex items-baseline font-medium leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-base"
href="https://cria.al.gov.br/" target="_blank" rel="noreferrer noopener"
aria-label="Halcyon Theme (opens in a new tab)"><span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded md:-inset-x-6 md:-inset-y-4 lg:block"></span><span>CRIA<!-- -->
<span class="inline-block">Alagoas<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span></span></a></h3>
<p class="mt-2 text-sm leading-normal">Intersectoral public policy program,
which involves Social Assistance, Health and Education.
The web app registers and classifies families that can access assistance
using social, demographic and open data to create a classification index.</p><a
class="relative mt-2 inline-flex items-center text-sm font-medium text-slate-300 hover:text-teal-300 focus-visible:text-teal-300"
href="https://cadastro.cria.al.gov.br/#/"
target="_blank" rel="noreferrer noopener"
aria-label="Over 100,000 installs on Visual Studio Code Marketplace (opens in a new tab)">
<svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
class="mr-1 h-3 w-3" aria-hidden="true">
<path
d="M12.232 4.232a2.5 2.5 0 013.536 3.536l-1.225 1.224a.75.75 0 001.061 1.06l1.224-1.224a4 4 0 00-5.656-5.656l-3 3a4 4 0 00.225 5.865.75.75 0 00.977-1.138 2.5 2.5 0 01-.142-3.667l3-3z">
</path>
<path
d="M11.603 7.963a.75.75 0 00-.977 1.138 2.5 2.5 0 01.142 3.667l-3 3a2.5 2.5 0 01-3.536-3.536l1.225-1.224a.75.75 0 00-1.061-1.06l-1.224 1.224a4 4 0 105.656 5.656l3-3a4 4 0 00-.225-5.865z">
</path>
</svg><span>Web App</span></a>
<ul class="mt-2 flex flex-wrap" aria-label="Technologies used:">
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Python</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Django RestFramework</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
NLTK</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Numpy</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
React</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Express</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Node.js</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Redis</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Postgres</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-xs font-medium leading-5 text-teal-300 ">
Docker</div>
</li>
</ul>
</div><img alt="Halcyon Theme homepage hero with screenshot of VS Code editor" loading="lazy"
width="200" height="48" decoding="async" data-nimg="1"
class="rounded border-2 border-slate-200/10 transition group-hover:border-slate-200/30 sm:order-1 sm:col-span-2 sm:translate-y-1"
style="color:transparent"
src="https://cria.al.gov.br/images/AreaDeAtuacao/LOGO_CRIA-01_1.png">
</div>
</li>
<li class="mb-12">
<div
class="group relative grid gap-4 pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:!opacity-100 lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<div class="z-10 sm:order-2 sm:col-span-6">
<h3><a
class="inline-flex items-baseline font-medium leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-base"