-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1075 lines (1042 loc) · 54.6 KB
/
Copy pathindex.html
File metadata and controls
1075 lines (1042 loc) · 54.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<meta
name="viewport"
content="width=device-width, initial-scale=1"
charset="utf-8"
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<title>Mobile Software Developer | Chrystian Salgado</title>
<!--CSS Bootstrap-->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/smartscroll.css" />
<!--JS Bootstrap-->
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script
type="text/javascript"
src="https://code.jquery.com/jquery-1.11.3.min.js"
></script>
<!--CSS-->
<link rel="stylesheet" type="text/css" href="style.css" />
<!--favicon-->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="e255fea9f35419e6202c3fea16399f57.ico/favicon-32x32.png"
/>
</head>
<body>
<div id="problema">
<!-- 01 HERO SECTION -->
<div
class="section"
data-hash="a"
style="background: #191919"
id="inicio"
>
<section class="hero-section">
<div class="container-fluid hero-container">
<!-- Header/Navigation -->
<div class="hero-header">
<button
id="lang-toggle"
class="btn btn-sm lang-btn"
>
PT-BR
</button>
<nav class="hero-nav">
<a
id="career"
href="#about"
data-i18n="nav.career"
>CARREIRA</a
>
<a
id="portfolio"
href="#port"
data-i18n="nav.apps"
>APPS</a
>
<a
id="courses"
href="#courses-section"
data-i18n="nav.courses"
>CURSOS</a
>
</nav>
</div>
<!-- Hero Content -->
<div class="hero-content">
<div class="hero-profile">
<div class="profile-image-wrapper">
<img
src="img/profile/img_profile.jpg"
class="profile-image"
alt="Chrystian Salgado"
/>
</div>
</div>
<div class="hero-text">
<h1 class="hero-name">
<span class="hero-name-first"
>CHRYSTIAN</span
>
<span class="hero-name-last">SALGADO</span>
</h1>
<span class="hero-role" data-i18n="hero.role"
>MOBILE SOFTWARE DEVELOPER</span
>
<div class="hero-social">
<a
class="social-link"
href="https://www.linkedin.com/in/chrystian-salgado-025769a6/"
target="_blank"
>
<img
class="social-icon"
src="img/perfil/ic_linkedin/ic_linkedin.png"
alt="LinkedIn"
/>
</a>
<a
class="social-link"
href="https://wa.me/5532999667031?text=Ol%C3%A1%20Chrystian%2C%20estou%20entrando%20em%20contato%20a%20respeito%20dos%20seus%20servi%C3%A7os%20de%20Desenvolvedor%20e%20consultor%20de%20tecnologia."
target="_blank"
>
<img
class="social-icon"
src="img/perfil/ic_whatsapp/ic_whatsapp.png"
alt="WhatsApp"
/>
</a>
</div>
</div>
</div>
<!-- Scroll indicator -->
<div class="scroll-indicator">
<a href="#about" id="rolarbaixo">
<span
class="scroll-text"
data-i18n="scroll.down"
>Role para baixo</span
>
<svg
class="scroll-arrow"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 5V19M12 19L5 12M12 19L19 12"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</div>
</div>
</section>
</div>
<!-- 02 CARREIRA SECTION -->
<div class="section" data-hash="b" style="background: #121212">
<section class="career-section">
<section class="page-section" id="about">
<div class="container-fluid section-container">
<!-- Section Header -->
<div class="section-header">
<span class="section-number">01</span>
<h2
class="section-title"
data-i18n="career.title"
>
CARREIRA
</h2>
</div>
<!-- Career Content -->
<div class="career-content">
<div class="career-nav">
<div
class="nav flex-column nav-pills"
id="v-pills-tab"
role="tablist"
aria-orientation="vertical"
>
<a
class="nav-link active"
id="v-pills-localiza-tab"
data-toggle="pill"
href="#v-pills-localiza"
role="tab"
aria-controls="v-pills-localiza"
aria-selected="true"
>Localiza&Co
<span
class="dataCareer"
id="datlocaliza"
>Abril 2026 - Presente</span
>
</a>
<a
class="nav-link"
id="v-pills-luizalabs-tab"
data-toggle="pill"
href="#v-pills-luizalabs"
role="tab"
aria-controls="v-pills-luizalabs"
aria-selected="false"
>Luizalabs
<span
class="dataCareer"
id="datluizalabs"
>Julho 2024 - Março 2026</span
>
</a>
<a
class="nav-link"
id="v-pills-madeinweb-tab2"
data-toggle="pill"
href="#v-pills-home2"
role="tab"
aria-controls="v-pills-home2"
aria-selected="false"
>MadeInWeb e Mobile
<span class="dataCareer" id="datibm"
>Outubro 2022 - Junho 2024</span
>
</a>
<a
class="nav-link"
id="v-tab-vidalink-tab"
data-toggle="pill"
href="#v-tab-vidalink"
role="tab"
aria-controls="v-tab-vidalink"
aria-selected="false"
>Vidalink
<span
class="dataCareer"
id="datMazzatec"
>Fevereiro 2020 - Outubro
2022</span
>
</a>
<a
class="nav-link"
id="v-pills-profile-tab"
data-toggle="pill"
href="#v-pills-profile"
role="tab"
aria-controls="v-pills-profile"
aria-selected="false"
>James Delivery
<span
class="dataCareer"
id="datmade"
>Fevereiro 2021 - Abril
2021</span
>
</a>
<a
class="nav-link"
id="v-pills-messages-tab"
data-toggle="pill"
href="#v-pills-messages"
role="tab"
aria-controls="v-pills-messages"
aria-selected="false"
>IBM
<span
class="dataCareer"
id="datgest"
>Abril 2015 - Março 2017</span
>
</a>
<a
class="nav-link"
id="v-pills-settings-tab"
data-toggle="pill"
href="#v-pills-settings"
role="tab"
aria-controls="v-pills-settings"
aria-selected="false"
>Qranio
<span
class="dataCareer"
id="datform"
>Outubro 2017 - Fevereiro
2019</span
>
</a>
</div>
</div>
<div class="career-detail">
<div
class="tab-content"
id="v-pills-tabContent"
>
<div
class="tab-pane fade show active"
id="v-pills-localiza"
role="tabpanel"
aria-labelledby="v-pills-localiza-tab"
data-i18n-html="career.localiza"
>
Trabalhando no desenvolvimento de
aplicações mobile para Localiza
</div>
<div
class="tab-pane fade"
id="v-pills-luizalabs"
role="tabpanel"
aria-labelledby="v-pills-luizalabs-tab"
data-i18n-html="career.luizalabs"
>
Trabalhando no time de features do
app Netshoes, dentre as entregas
constui a nova tela de Reviews,
novas funcionalidades para home,
PDP, ajuste na lista de produtos
para remover espaços em branco na
célula, melhorias deeplinks. Também
mentorei os mais juniors e fui
responsável pela apresentação do
projeto a novos colaboladores.
</div>
<div
class="tab-pane fade"
id="v-tab-vidalink"
role="tabpanel"
aria-labelledby="v-tab-vidalink-tab"
data-i18n-html="career.vidalink"
>
Na Vidalink fui responsável pela
manutenção do app, refinamento e
acompanhamento de features, lider do
time iOS.
</div>
<div
class="tab-pane fade"
id="v-pills-home2"
role="tabpanel"
aria-labelledby="v-pills-madeinweb-tab"
data-i18n-html="career.madeinweb"
>
Na MadeInWeb coloquei a disposição
minhas habilidades no
desenvolvimento de aplicativos para
iPhone, ajudando o time a criar
novos apps e soluções para outros
apps, alguns apps internos, outros
apps internos para clientes da
MadeInWeb e outros projetos para
todos usuários da AppStore. Dentre
eles projetos para JBS, Interfarma,
AvatarDaSaúde, Vidalink, Blenders in
The Grass, Yoou, Universal, 2Step.
</div>
<div
class="tab-pane fade"
id="v-pills-profile"
role="tabpanel"
aria-labelledby="v-pills-profile-tab"
data-i18n-html="career.james"
>
Na minha breve passagem no James eu
fui ajudei o time com o refactor e
relifting do aplicativo, para iOS
visando uma melhora visão das
entregas entre cliente e entregador,
e melhorar a visão do usuário dos
itens no carrinho.
</div>
<div
class="tab-pane fade"
id="v-pills-messages"
role="tabpanel"
aria-labelledby="v-pills-messages-tab"
data-i18n-html="career.santander"
>
Trabalhei no módulo de chat dentro
do Santander, integrando o mesmo via
Carthage e Cocoapods com os apps
Santander Empresas e Santander PF
</div>
<div
class="tab-pane fade"
id="v-pills-settings"
role="tabpanel"
aria-labelledby="v-pills-settings-tab"
data-i18n-html="career.qranio"
>
Atuei como desenvolvedor iOS, onde
consegui boa parte do meu
conhecimento em Git e no
desenvolvimento de aplicativos
usando Swift e AltoLayout, aprendi e
implementei técnicas de Teste
Unitário, e Bando de dados usando o
Realm, alem de aprender a usar
Fastlane nos projetos.
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<div class="scroll-indicator">
<a href="#port" id="rolarbaixo2">
<span class="scroll-text" data-i18n="scroll.down"
>Role para baixo</span
>
<svg
class="scroll-arrow"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 5V19M12 19L5 12M12 19L19 12"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</div>
</div>
<!-- 03 PROJETOS EM DESTAQUE SECTION -->
<div
class="section"
data-hash="c"
id="port"
style="background: #191919"
>
<section class="portfolio-section">
<div class="container-fluid section-container">
<!-- Section Header -->
<div class="section-header">
<span class="section-number">02</span>
<h2 class="section-title" data-i18n="port.title">
APPS
</h2>
<p class="section-description">
Projetos em destaque
</p>
</div>
<!-- Portfolio Content -->
<div class="portfolio-content" id="verticalMenu">
<div class="portfolio-tabs">
<button
class="tablinks active"
onclick="openCity(event, 'How')"
style="color: #fcb525"
data-i18n="port.yclipboard"
>
YClipboard
</button>
<button
class="tablinks"
onclick="openCity(event, 'How2')"
style="color: #fcb525"
data-i18n="port.comprinhas"
>
Comprinhas - iOS
</button>
<button
class="tablinks"
onclick="openCity(event, 'How3')"
style="color: #fcb525"
data-i18n="port.yiptv_ios"
>
YIPTV - iOS/TVOS
</button>
<button
class="tablinks"
onclick="openCity(event, 'How4')"
style="color: #fcb525"
data-i18n="port.yiptv_android"
>
YIPTV - AndroidTV
</button>
</div>
<div class="portfolio-detail">
<div id="How" class="tabcontent active">
<div class="project-card">
<h3
class="project-title"
style="color: #fcb525"
>
YClipboard
</h3>
<p
class="project-description"
data-i18n-html="port.yclipboard.content"
>
Este app foi criado para usuários de
macOS que buscam controle total
sobre o histórico da área de
transferência, com praticidade, e
privacidade. Privacidade em primeiro
lugar: Todos os dados são
armazenados localmente, garantindo
segurança e confidencialidade. Ideal
para desenvolvedores estudantes e
qualquer pessoa que queira otimizar
seu dia a dia no Mac.
</p>
<p class="project-cta">
<strong>download now:</strong>
</p>
<a
href="https://apps.apple.com/br/app/yclipboard/id6751497087?l=en-GB&mt=12"
target="_blank"
>
<button
type="button"
class="btn btn-primary"
data-i18n="port.download"
>
Download App
</button>
</a>
</div>
</div>
<div id="How2" class="tabcontent">
<div class="project-card">
<h3
class="project-title"
style="color: #fcb525"
>
Comprinhas - iOS
</h3>
<p
class="project-description"
data-i18n-html="port.comprinhas.content"
>
O app Comprinhas tem como função
ajudar o usuário a facilitar o fluxo
de compras do usuário quando o mesmo
está no supermercado. A idéia é que
o usuário consiga ver sua lista de
forma facil do que comprar no app,
marcar o que ja colocou no carrinho
e compartilhar para que outras
pessoas complementem ou acompahem a
lista de compras em tempo real.
</p>
<p class="project-cta">
<strong>download now:</strong>
</p>
<a
href="https://apps.apple.com/us/app/comprinhas/id1562893313"
target="_blank"
>
<button
type="button"
class="btn btn-primary"
data-i18n="port.download"
>
Download App
</button>
</a>
</div>
</div>
<div id="How3" class="tabcontent">
<div class="project-card">
<h3
class="project-title"
style="color: #fcb525"
>
YIPTV - iOS/TVOS
</h3>
<p
class="project-description"
data-i18n-html="port.yiptv_ios.content"
>
O app YIPTV é o meu filho mais novo!
Vindo de uma vontade de criar uma
experiência melhor, menos poluída e
'easy to use' dos players M3U eu
criei esse app. Disponivel para iOS,
iPadOS e MacOS.
</p>
<p class="project-cta">
<strong>download now:</strong>
</p>
<a
href="https://apps.apple.com/us/app/yiptv-player/id1621209639"
target="_blank"
>
<button
type="button"
class="btn btn-primary"
data-i18n="port.download"
>
Download App
</button>
</a>
</div>
</div>
<div id="How4" class="tabcontent">
<div class="project-card">
<h3
class="project-title"
style="color: #fcb525"
>
YIPTV - Android
</h3>
<p
class="project-description"
data-i18n-html="port.yiptv_android.content"
>
O app YIPTV é o meu filho mais novo!
Vindo de uma vontade de criar uma
experiência melhor, menos poluída e
'easy to use' dos players M3U eu
criei esse app. Disponivel para
Android.
</p>
<p class="project-cta">
<strong>download now:</strong>
</p>
<a
href="https://play.google.com/store/apps/details?id=com.salgadosproductions.yiptv&pli=1"
target="_blank"
>
<button
type="button"
class="btn btn-primary"
data-i18n="port.download"
>
Download App
</button>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<script>
$("#verticalMenu").css("display", "block");
</script>
<script>
function openCity(evt, cityName) {
// Declare all variables
var i, tabcontent, tablinks;
// Get all elements with class="tabcontent" and hide them
tabcontent =
document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
tabcontent[i].classList.remove("active");
}
// Get all elements with class="tablinks" and remove the class "active"
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[
i
].className.replace(" active", "");
}
// Show the current tab, and add an "active" class to the link that opened the tab
document.getElementById(cityName).style.display =
"block";
document
.getElementById(cityName)
.classList.add("active");
evt.currentTarget.className += " active";
}
</script>
<div class="scroll-indicator">
<a href="#courses-section" id="rolarbaixo3">
<span class="scroll-text" data-i18n="scroll.down"
>Role para baixo</span
>
<svg
class="scroll-arrow"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 5V19M12 19L5 12M12 19L19 12"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</div>
</div>
<!-- 04 CURSOS SECTION -->
<div class="section" data-hash="d" style="background: #121212">
<section class="courses-section">
<section class="page-section" id="courses-section">
<div class="container-fluid section-container">
<!-- Section Header -->
<div class="section-header">
<span class="section-number">03</span>
<h2
class="section-title"
data-i18n="courses.title"
>
CURSOS
</h2>
<p class="section-description">
Conteúdo em destaque
</p>
</div>
<!-- Courses Content -->
<div class="courses-content">
<div
class="courses-container"
id="courses-container"
>
<!-- Featured course (left) -->
<div
class="courses-featured"
id="featured-course"
></div>
<!-- Courses list (right) -->
<div
class="courses-list"
id="courses-list"
></div>
</div>
</div>
</div>
</section>
</section>
<div class="scroll-indicator">
<a href="#contact" id="rolarbaixo-courses">
<span class="scroll-text" data-i18n="scroll.down"
>Role para baixo</span
>
<svg
class="scroll-arrow"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 5V19M12 19L5 12M12 19L19 12"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</div>
</div>
<!-- 05 CONTATO SECTION -->
<div class="section" data-hash="e" style="background: #191919">
<section class="contact-section">
<section class="page-section" id="contact">
<div class="container-fluid section-container">
<!-- Section Header -->
<div class="section-header">
<span class="section-number">04</span>
<h2
class="section-title"
data-i18n="contact.title"
>
CONTATO
</h2>
<p class="section-description">
Onde acompanhar
</p>
</div>
<!-- Contact Content -->
<div class="contact-content">
<div class="contact-info">
<p
class="contact-description"
data-i18n="contact.description"
>
Precisando conversar sobre uma ideia ou
desenvolver um app para android e / ou
ios entre em contato comigo
</p>
<div class="contact-buttons">
<a
href="https://wa.me/5532999667031"
target="_blank"
>
<button
type="button"
class="btn btn-primary btn-contact"
data-i18n="contact.whatsapp"
>
WhatsApp
</button>
</a>
<a href="mailto:salgado.dev@gmail.com">
<button
type="button"
class="btn btn-primary btn-contact"
data-i18n="contact.email"
>
Email
</button>
</a>
</div>
</div>
</div>
</div>
</section>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-actions">
<a
href="#inicio"
id="back-to-top"
class="back-to-top"
>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 19V5M12 5L5 12M12 5L19 12"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</div>
<p class="footer-copyright">
© 2025 Chrystian Salgado. Todos os direitos
reservados.
</p>
</div>
</footer>
</div>
</div>
<!-- Scripts -->
<script
type="text/javascript"
src="files/bower_components/lethargy/lethargy.min.js"
></script>
<script type="text/javascript" src="js/smartscroll.js"></script>
<script type="text/javascript" src="/scriptmenu.js"></script>
<script>
$.smartscroll();
</script>
<script>
$(function () {
$(".tab").mouseenter(disableScrolling);
$(".tab").mouseleave(enableScrolling);
});
</script>
<script>
function disableScrolling() {
var x = window.scrollX;
var y = window.scrollY;
window.onscroll = function () {
window.scrollTo(x, y);
};
}
function enableScrolling() {
window.onscroll = function () {};
}
</script>
<script>
$(function () {
// Initial display setup (Localiza as first)
$(".dataCareer").hide();
$("#datlocaliza").show();
// Ensure all nav-links are inactive and only Localiza is active initially
$(".nav-link")
.removeClass("active")
.attr("aria-selected", "false");
$("#v-pills-localiza-tab")
.addClass("active")
.attr("aria-selected", "true");
// Ensure all tab-panes are hidden and only Localiza is shown initially
$(".tab-pane").removeClass("show active");
$("#v-pills-localiza").addClass("show active");
// Attach a single click handler to the parent of the nav-links
$("#v-pills-tab").on("click", ".nav-link", function (e) {
e.preventDefault(); // Prevent default Bootstrap tab behavior
var clickedLink = $(this);
var targetPaneId = clickedLink.attr("href"); // e.g., "#v-pills-luizalabs"
var targetDataCareerId = clickedLink
.find(".dataCareer")
.attr("id"); // e.g., "datluizalabs"
// Remove active state from all nav-links
$(".nav-link")
.removeClass("active")
.attr("aria-selected", "false");
// Add active state to the clicked nav-link
clickedLink
.addClass("active")
.attr("aria-selected", "true");
// Hide all dataCareer spans and show the relevant one
$(".dataCareer").hide();
$("#" + targetDataCareerId).show();
// Hide all tab-panes and show the relevant one
$(".tab-pane").removeClass("show active");
$(targetPaneId).addClass("show active");
// Smooth scroll on mobile
if (window.innerWidth < 768) {
setTimeout(function () {
clickedLink.scrollIntoView({ behavior: "smooth" });
}, 100);
}
});
// Mobile-friendly tab switching for portfolio
$(".tablinks").on("click", function () {
if (window.innerWidth < 768) {
setTimeout(function () {
$(".tabcontent:visible").scrollIntoView({
behavior: "smooth",
});
}, 100);
}
});
});
</script>
<script>
// Load and render courses
function loadCourses() {
$.getJSON("courses.json", function (data) {
if (data.courses && data.courses.length > 0) {
// Featured course (first item)
const featured = data.courses[0];
const featuredHtml = `
<a href="${featured.link}" target="_blank" rel="noopener noreferrer">
<img src="${featured.thumbnail}" alt="${featured.title}" class="featured-thumbnail" onerror="this.src='data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22400%22 height=%22225%22%3E%3Crect fill=%22%23444%22 width=%22400%22 height=%22225%22/%3E%3Ctext fill=%22%23999%22 font-size=%2216%22 x=%2250%25%22 y=%2250%25%22 text-anchor=%22middle%22 dominant-baseline=%22middle%22%3EImage not available%3C/text%3E%3C/svg%3E'">
<h3 class="featured-title">${featured.title}</h3>
</a>
`;
$("#featured-course").html(featuredHtml);
// Courses list (items 1-5)
let listHtml = "";
for (
let i = 1;
i < Math.min(6, data.courses.length);
i++
) {
const course = data.courses[i];
listHtml += `
<a href="${course.link}" target="_blank" rel="noopener noreferrer" class="course-list-item">
<img src="${course.thumbnail}" alt="${course.title}" class="list-thumbnail" onerror="this.src='data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22100%22 height=%2275%22%3E%3Crect fill=%22%23444%22 width=%22100%22 height=%2275%22/%3E%3Ctext fill=%22%23999%22 font-size=%2210%22 x=%2250%25%22 y=%2250%25%22 text-anchor=%22middle%22 dominant-baseline=%22middle%22%3EN/A%3C/text%3E%3C/svg%3E'">
<p class="list-title">${course.title}</p>
</a>
`;