-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1016 lines (855 loc) · 45.9 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
<html lang="en"><head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/ico/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/ico/favicon-40x40.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/ico/favicon.png">
<link rel="manifest" href="assets/ico/site.webmanifest">
<link rel="mask-icon" href="assets/ico/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="assets/ico/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- Plugins CSS -->
<link rel="stylesheet" href="assets/libs/flickity/dist/flickity.min.css">
<link rel="stylesheet" href="assets/libs/flickity-fade/flickity-fade.css">
<link rel="stylesheet" href="assets/libs/fullpage.js/dist/fullpage.min.css">
<link rel="stylesheet" href="assets/libs/highlightjs/styles/codepen-embed.css">
<link rel="stylesheet" href="assets/libs/@fortawesome/fontawesome-free/css/all.min.css">
<link rel="stylesheet" href="assets/libs/incline-icons/style.min.css">
<!-- SweetAlert2 CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/sweetalert2@11/dist/sweetalert2.min.css">
<!-- Theme CSS -->
<link rel="stylesheet" href="assets/css/theme.min.css">
<style>
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes gradientMove {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.hero-background {
background: linear-gradient(-45deg, #ffcc00, #ff9900, #ff6600, #ff3300);
background-size: 300% 300%;
animation: gradientMove 6s ease infinite;
}
.hero-text {
animation: fadeIn 1.2s ease-out;
}
.cta-button {
display: inline-block;
background: transparent;
padding: 0.6125rem 2rem;
text-decoration: none;
font-weight: bold;
border-radius: 0.3125rem;
border: 0.0625rem solid #f5ba4b;
transition: all 0.3s ease;
text-transform: uppercase;
}
.cta-button:hover {
background: #6c63ff;
border: solid #6c63ff;
color: white;
text-decoration: none;
transform: scale(1.1); /* Slight zoom */
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
</style>
<title>Welcome to My Portfolio</title>
<script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/59/3a/intl/es_ALL/common.js"></script><script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/59/3a/intl/es_ALL/util.js"></script></head>
<body>
<!-- NAVBAR
================================================= -->
<nav class="navbar navbar-expand-xl navbar-togglable fixed-top navbar-light">
<div class="container">
<!-- Toggler -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<!-- Links -->
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown">
<a class="nav-link" href="#home" id="navbarHome" role="button" data-section="home">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about_me" id="navbarAbout" role="button" data-section="about_me" >
About
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills" id="navbarSkill" role="button" data-section="skills" >
Skills
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio" id="navbarPortfolio" role="button" data-section="portfolio" >
Portfolio
</a>
</li>
<li class="nav-item ">
<a href="#experience" class="nav-link" data-section="experience">
Experience
</a>
</li>
<li class="nav-item-divider">
<span class="nav-link">
<span></span>
</span>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link" data-section="contact">
Contact
</a>
</li>
</ul>
</div> <!-- / .navbar-collapse -->
</div> <!-- / .container -->
</nav>
<!-- HOME
================================================== -->
<section class="section section-top section-full hero-background" id="home">
<!-- Cover -->
<div class="bg-cover" style="background-image: url(assets/images/42.jpg);"></div>
<!-- Overlay -->
<div class="bg-overlay"></div>
<!-- Triangles -->
<div class="bg-triangle bg-triangle-light bg-triangle-bottom bg-triangle-left"></div>
<div class="bg-triangle bg-triangle-light bg-triangle-bottom bg-triangle-right"></div>
<!-- Content -->
<div class="container">
<div class="row justify-content-center align-items-center">
<div class="col-md-8 col-lg-7">
<!-- Heading -->
<h1 class="text-white text-center mb-4 hero-text" id="hero-title"></h1>
<!-- Subheading -->
<p class="lead text-white text-muted text-center mb-5 hero-text">
I'm Alexis Cabrera, a software developer with over 12 years of experience creating technology that streamlines processes and drives impact.
Discover how I can help transform your business.
</p>
<!-- Button -->
<p class="text-center mb-0 animate" data-toggle="animation" data-animation="fadeUp" data-animation-order="3" data-animation-trigger="load">
<a href="#portfolio" class="btn btn-primary btn-transition text-white cta-button">
Explore My Work
</a>
</p>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- SECTIONS
================================================== -->
<!-- ABOUT ME
================================================== -->
<section class="section" id="about_me">
<!-- Content -->
<div class="container">
<div class="row align-items-center">
<div class="col-md-6 col-lg-5 offset-lg-1 order-md-2">
<!-- Image -->
<div class="img-effect img-effect-solid mb-5 mb-md-0" style="left: 10%;">
<img src="assets/images/47.jpg" class="img-fluid" alt="...">
</div>
</div>
<div class="col-md-6 col-lg-4 offset-lg-1 order-md-1">
<!-- Heading -->
<h2 class="mb-4">
About Me
</h2>
<!-- Content -->
<ul class="list-iconed text-muted" style="width: 35em;">
<li >
<li>I’m a computer engineer passionate about turning ideas into intuitive and scalable software solutions. I specialize in optimizing processes and developing applications
that simplify life.</li>
<li>Let’s team up and create something awesome—you bring the vision, I’ll bring the code!</li>
</li>
</ul>
<!-- Button -->
<a href="https://drive.google.com/file/d/1NLJkYXhW1lcWHbJck99DqaxOv2CoZouS/view?usp=sharing" target="_blank" class="btn btn-primary btn-transition cta-button">
Resume
</a>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- Skills
================================================== -->
<section class="section bg-light" id="skills">
<!-- Triangles -->
<div class="bg-triangle bg-triangle-dark bg-triangle-top bg-triangle-left"></div>
<div class="bg-triangle bg-triangle-dark bg-triangle-bottom bg-triangle-right"></div>
<!-- Content -->
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6">
<!-- Heading -->
<h2 class="text-center mb-4">
Skills
</h2>
<!-- Subheading -->
<p class="text-muted text-center mb-5">
Discover the skills and technologies I use to create innovative, scalable, and efficient solutions for my clients.
</p>
</div>
</div> <!-- / .row -->
<div class="row text-center justify-content-center">
<!-- Primera fila: 5 imágenes -->
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/1.png" alt=""></div>
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/2.png" alt=""></div>
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/3.png" alt=""></div>
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/4.png" alt=""></div>
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/5.png" alt=""></div>
</div>
<div class="row text-center justify-content-center">
<!-- Segunda fila: 5 imágenes -->
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/6.png" alt=""></div>
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/7.png" alt=""></div>
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/8.png" alt=""></div>
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/9.png" alt=""></div>
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/10.png" alt=""></div>
</div>
<div class="row text-center justify-content-center">
<!-- Tercera fila: 4 imágenes -->
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/11.png" alt=""></div>
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/12.png" alt=""></div>
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/13.png" alt=""></div>
<div class="col-4 col-md-2 mb-5"><img class="w-100" src="assets/images/tools/14.png" alt=""></div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- Portfolio
================================================== -->
<section class="section" id="portfolio">
<!-- Content -->
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6">
<!-- Heading -->
<h2 class="text-center mb-4">
Portfolio
</h2>
<!-- Subheading -->
<p class="text-muted text-center mb-5">
Explore some of the projects I’ve worked on, showcasing my expertise in web development and Odoo ERP solutions.
</p>
</div>
</div> <!-- / .row -->
<div class="row">
<div class="col-md-4">
<!-- Item -->
<a href="https://github.com/alexisadrianc/building-administration" class="card border-0 mb-3 mb-md-0">
<!-- Image -->
<div class="card-img-top">
<img src="assets/images/1.png" alt="Building administration" class="img-fluid">
</div>
<!-- Body -->
<div class="card-body">
<div class="mb-2">
<!-- Title -->
<h4 class="card-title">
Building Administration
</h4>
<span class="badge bg-light-subtle border border-light-subtle text-light-emphasis rounded-2">Django</span>
<span class="badge bg-light-subtle border border-light-subtle text-light-emphasis rounded-2">Bootstrap</span>
</div>
<!-- Body -->
<p class="card-text text-muted">
This project offers a streamlined solution for managing properties, tenants, payments, and maintenance.
</p>
</div>
</a> <!-- / .card -->
</div>
<div class="col-md-4">
<!-- Item -->
<a href="https://github.com/alexisadrianc/driver-academy" class="card border-0 mb-3 mb-md-0">
<!-- Image -->
<div class="card-img-top">
<img src="assets/images/2.png" alt="Driver Academy" class="img-fluid">
</div>
<!-- Body -->
<div class="card-body">
<div class="mb-2">
<!-- Title -->
<h4 class="card-title">
Driver Academy
</h4>
<span class="badge bg-light-subtle border border-light-subtle text-light-emphasis rounded-2">Django</span>
<span class="badge bg-light-subtle border border-light-subtle text-light-emphasis rounded-2">Bootstrap</span>
</div>
<!-- Body -->
<p class="card-text text-muted">
The goal of this project is to deliver an integrated solution for efficiently managing driver training processes in an academy.
</p>
</div>
</a> <!-- / .card -->
</div>
<div class="col-md-4">
<!-- Item -->
<a href="#!" class="card border-0 mb-3 mb-md-0">
<!-- Image -->
<div class="card-img-top">
<img src="assets/images/57.png" alt="Fullpage scrolling" class="img-fluid">
</div>
<!-- Body -->
<div class="card-body">
<div class="mb-2">
<!-- Title -->
<h4 class="card-title">
Graphic Designer Portfolio <span class="badge badge-danger">New!</span>
</h4>
<span class="badge bg-light-subtle border border-light-subtle text-light-emphasis rounded-2">Bootstrap</span>
</div>
<!-- Text -->
<p class="card-text text-muted">
A landing page created with fullscreen scrolling sections.
</p>
<div class="d-grid">
<a class="btn btn-primary btn-transition cta-button" href="#">Preview <i class="fab fa-eye ms-1"></i></a>
</div>
</div>
</a> <!-- / .card -->
</div>
<div class="col-md-4">
<!-- Item -->
<a href="#!" class="card border-0 mb-3 mb-md-0">
<!-- Image -->
<div class="card-img-top">
<img src="assets/images/58.png" alt="Nerlax Website" class="img-fluid">
</div>
<!-- Body -->
<div class="card-body">
<div class="mb-2">
<!-- Title -->
<h4 class="card-title">
Nerlax Website <span class="badge badge-danger">New!</span>
</h4>
<span class="badge bg-light-subtle border border-light-subtle text-light-emphasis rounded-2">Wordpress</span>
</div>
<!-- Text -->
<p class="card-text text-muted">
It’s an e-commerce platform offering digital products focused on wellness and relaxation.
</p>
<div class="d-grid">
<a class="btn btn-primary btn-transition cta-button" href="https://nerlaxshop.com/" target="_blank">Preview <i class="fab fa-eye ms-1"></i></a>
</div>
</div>
</a> <!-- / .card -->
</div>
<div class="col-md-4">
<!-- Item -->
<a href="#!" class="card border-0 mb-3 mb-md-0">
<!-- Image -->
<div class="card-img-top">
<img src="assets/images/431.png" alt="App landing" class="img-fluid">
</div>
<!-- Body -->
<div class="card-body">
<div class="mb-2">
<!-- Title -->
<h4 class="card-title">
Odoo ERP Customization
</h4>
<span class="badge bg-light-subtle border border-light-subtle text-light-emphasis rounded-2">Odoo</span>
</div>
<!-- Body -->
<p class="card-text text-muted">
Custom setup to streamline your business processes with Odoo ERP.
</p>
</div>
</a> <!-- / .card -->
</div>
<div class="col-md-4">
<!-- Item -->
<a href="#" class="card border-0 disabled">
<!-- Image -->
<div class="card-img-top card-img-waiting">
<span class="icon-clock icon-2x"></span>
</div>
<!-- Body -->
<div class="card-body">
<!-- Title -->
<h4 class="card-title">
Coming soon
</h4>
<!-- Text -->
<p class="card-text text-muted">
Feel free to contact us with your ideas about new pages and components.
</p>
</div>
</a> <!-- / .card -->
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- Experience
================================================== -->
<section class="section bg-light" id="experience">
<!-- Line -->
<div class="line line-top"></div>
<!-- Triangles -->
<div class="bg-triangle bg-triangle-dark bg-triangle-top bg-triangle-left"></div>
<div class="bg-triangle bg-triangle-dark bg-triangle-bottom bg-triangle-right"></div>
<!-- Content -->
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6">
<h2 class="text-center mb-2">Experience</h2>
</div>
</div>
<!-- timeline item 1 -->
<div class="row g-0">
<!-- <div class="timeline-top"></div> -->
<div class="col-md"> </div>
<div class="col-md-1 text-center timeline-line flex-column d-none d-md-flex position-relative">
<div class="timeline-dot"></div>
</div>
<div class="col-md py-2">
<div class="card">
<div class="card-body">
<div class="float-end small">Feb 2023 - Present</div>
<h4 class="mb-2">Full Stack Developer - Odoo & Python</h4>
<p>Microcom</p>
<ul class="list-iconed text-muted">
<li class="list-iconed-item">
Migrated Odoo modules from version 11 to version 17, ensuring seamless transitions and maintaining system integrity.
</li>
<li class="list-iconed-item">
Spearheaded database migrations with OpenUpgrade, minimizing downtime and data loss.
</li>
<li class="list-iconed-item">
Developed and implemented automated testing frameworks, reducing error rates by 20%.
</li>
<li class="list-iconed-item">
Contributed to OpenUpgrade as part of the Odoo Community Association (OCA), driving advancements in open-source solutions.
</li>
<li class="list-iconed-item">
Enhanced development workflows by integrating Agile methodologies and version control practices (Git, GitHub).
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- timeline item 2 -->
<div class="row g-0">
<div class="col-md py-2">
<div class="card">
<div class="card-body">
<div class="float-end small">Nov 2018 - Feb 2023</div>
<h4 class="mb-2">Senior Odoo Consultant</h4>
<p>Quanam</p>
<ul class="list-iconed text-muted">
<li class="list-iconed-item">
Designed and developed custom Odoo addons for accounting, sales, and reporting, increasing productivity by 25%.
</li>
<li class="list-iconed-item">
Implemented Test-Driven Development (TDD), improving code quality and coverage.
</li>
<li class="list-iconed-item">
Led Continuous Integration and Deployment (CI/CD) initiatives to streamline releases.
</li>
<li class="list-iconed-item">
Optimized SQL queries and resolved database issues, reducing downtime by 10%.
</li>
<li class="list-iconed-item">
Mentored junior developers, fostering skill development in Python and Odoo.
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-1 text-center timeline-line flex-column d-none d-md-flex position-relative">
<div class="timeline-dot"></div>
</div>
<div class="col-md"></div>
</div>
<!-- timeline item 3 -->
<div class="row g-0">
<div class="col-md"> </div>
<div class="col-md-1 text-center timeline-line flex-column d-none d-md-flex position-relative">
<div class="timeline-dot"></div>
</div>
<div class="col-md py-2">
<div class="card">
<div class="card-body">
<div class="float-end small">Aug 2018 - Jun 2022</div>
<h4 class="mb-2">Software Developer</h4>
<p>Phinx Lab</p>
<ul class="list-iconed text-muted">
<li class="list-iconed-item">
Managed the migration of Odoo databases from version 12 to 15, ensuring smooth upgrades and system reliability.
</li>
<li class="list-iconed-item">
Created intuitive user interfaces, improving the overall user experience and reducing processing times by 25%.
</li>
<li class="list-iconed-item">
Collaborated with cross-functional teams to develop scalable solutions for enterprise clients.
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- timeline item 4 -->
<div class="row g-0">
<div class="col-md py-2">
<div class="card">
<div class="card-body">
<div class="float-end small">Jan 2013 - Jun 2018</div>
<h4 class="mb-2">Software Developer</h4>
<p>Aplication Company - DESOFT</p>
<ul class="list-iconed text-muted">
<li class="list-iconed-item">
Delivered end-to-end custom ERP solutions for multiple clients, reducing delivery times by 25%.
</li>
<li class="list-iconed-item">
Led system deployments, collaborating with client IT teams to ensure seamless integration.
</li>
<li class="list-iconed-item">
Introduced Docker containers, simplifying deployment processes across varied environments.
</li>
<li class="list-iconed-item">
Designed and optimized complex SQL databases, improving system efficiency and usability.
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-1 text-center timeline-line flex-column d-none d-md-flex position-relative">
<div class="timeline-dot"></div>
</div>
<div class="col-sm"></div>
</div>
</div>
</section>
<!-- Contact
================================================== -->
<section class="section" id="contact">
<!-- Content -->
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-md-6" data-cue="zoomIn" data-show="true" style="animation-name: zoomIn; animation-duration: 600ms; animation-timing-function: ease; animation-delay: 0ms; animation-direction: normal; animation-fill-mode: both;">
<div class="mb-6 text-lg-start">
<div class="mb-3">
<img src="assets/ico/apple-touch-icon.png" alt="avatar" class="avatar avatar-xl rounded-circle" style="width: 6rem;
height: 6rem;">
</div>
<h3 class="mb-0">Alexis Cabrera</h3>
<small>Software Engineer | Backend Developer | IT & Code</small>
</div>
<div class="d-flex mb-4">
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-geo-alt-fill" viewBox="0 0 16 16">
<path d="M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z"></path>
</svg>
</div>
<div class="ms-2" style="margin-left: .5rem !important;">
<h5 class="mb-0">Address:</h5>
<small>Montreal, QC Canadá</small>
</div>
</div>
<div class="d-flex mb-4">
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-telephone" viewBox="0 0 16 16">
<path d="M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z"></path>
</svg>
</div>
<div class="ms-2" style="margin-left: .5rem !important;">
<h5 class="mb-0">Phone:</h5>
<small>
(+1) 438 XXX XXXX
</small>
</div>
</div>
<div class="d-flex mb-4">
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-envelope-check" viewBox="0 0 16 16">
<path d="M2 2a2 2 0 0 0-2 2v8.01A2 2 0 0 0 2 14h5.5a.5.5 0 0 0 0-1H2a1 1 0 0 1-.966-.741l5.64-3.471L8 9.583l7-4.2V8.5a.5.5 0 0 0 1 0V4a2 2 0 0 0-2-2H2Zm3.708 6.208L1 11.105V5.383l4.708 2.825ZM1 4.217V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v.217l-7 4.2-7-4.2Z"></path>
<path d="M16 12.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Zm-1.993-1.679a.5.5 0 0 0-.686.172l-1.17 1.95-.547-.547a.5.5 0 0 0-.708.708l.774.773a.75.75 0 0 0 1.174-.144l1.335-2.226a.5.5 0 0 0-.172-.686Z"></path>
</svg>
</div>
<div class="ms-2" style="margin-left: .5rem !important;">
<h5 class="mb-0">E-mail:</h5>
<small>
<a href="#!" class="text-reset">[email protected]</a>
</small>
</div>
</div>
<div>
<a href="https://www.instagram.com/alexis.adrianc/" class="text-reset btn btn-instagram btn-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-instagram" viewBox="0 0 16 16">
<path d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z"></path>
</svg>
</a>
<!-- <a href="#!" class="text-reset btn btn-twitter btn-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-twitter" viewBox="0 0 16 16">
<path d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z"></path>
</svg>
</a>
<a href="#!" class="text-reset btn btn-youtube btn-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-youtube" viewBox="0 0 16 16">
<path d="M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.007 2.007 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.007 2.007 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31.4 31.4 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.007 2.007 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A99.788 99.788 0 0 1 7.858 2h.193zM6.4 5.209v4.818l4.157-2.408L6.4 5.209z"></path>
</svg>
</a> -->
<a href="https://www.linkedin.com/in/alexis-adrian-cabrera-pereira/" class="text-reset btn btn-linkedin btn-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z"></path>
</svg>
</a>
<a href="https://github.com/alexisadrianc" class="text-reset btn btn-github btn-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
<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-.27s1.36.09 2 .27c1.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.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8"/>
</svg>
</a>
</div>
<!-- Heading -->
</div>
<div class="col-md-6">
<!-- Heading -->
<h3 class="mb-4">
Let’s Build Something <span class="text-primary">Great Together!</span>
</h3>
<!-- Subheading -->
<p class="text-muted mb-5">
Have a project in mind or need a reliable developer to bring your ideas to life? I’d love to hear from you! Feel free to reach out,
and let’s start creating solutions that make a difference.
</p>
<!-- Form -->
<form id="contactForm" action="php/send_email.php" method="POST">
<div class="form-row">
<div class="form-group col-md-6">
<!-- Name -->
<label>Full name</label>
<div class="input-group">
<input type="text" class="form-control order-1" name="contact-name">
<div class="input-group-append order-0">
<div class="input-group-text">
<svg class="input-group-icon icon-offset icon icon-person" viewBox="0 0 106 106" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path transform="translate(3 3)" d="
M0 100 A 50 50 0 0 1 50 60 A 20 20 0 0 1 50 0 A 20 20 0 0 1 50 60 A 50 50 0 0 1 100 100">
</path>
</svg>
</div>
</div>
</div>
</div>
<div class="form-group col-md-6">
<!-- Email -->
<label>Email address</label>
<div class="input-group">
<input type="email" class="form-control order-1" name="contact-email">
<div class="input-group-append order-0">
<div class="input-group-text">
<svg class="input-group-icon icon-offset icon icon-envelope" viewBox="0 0 106 106" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path transform="translate(3 3)" d="
M0 30 V 10 H 100 V 90 H 0 V 30 L 50 60 L 100 30">
</path>
</svg>
</div>
</div>
</div>
</div>
</div> <!-- / .form-row -->
<div class="form-row">
<div class="form-group col-12">
<!-- Message -->
<label>Your message</label>
<textarea class="form-control" name="contact-message" rows="7"></textarea>
</div>
</div> <!-- / .form-row -->
<div class="form-row">
<div class="col-12">
<!-- Submit -->
<button type="submit" class="btn btn-primary btn-transition cta-button">
Send message
</button>
<!-- Reset -->
<button type="reset" class="btn btn-link">
Reset form
</button>
</div>
</div>
</form>
<!-- Modal de Mensaje -->
<div class="modal fade" id="responseModal" tabindex="-1" aria-labelledby="responseModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="responseModalLabel">Message</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<p id="responseMessage"></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<!-- FOOTER
================================================== -->
<footer class="section bg-dark">
<!-- Triangles -->
<div class="bg-triangle bg-triangle-light bg-triangle-top bg-triangle-left"></div>
<div class="bg-triangle bg-triangle-light bg-triangle-bottom bg-triangle-right"></div>
<!--Content -->
<div class="container">
<div class="row align-self-center">
</div> <!-- / .row -->
<div class="container position-relative">
<div class="row g-4 justify-content-between">
<!-- Widget 1 START -->
<div class="col-lg-5">
<p class="text-white mt-4 mb-2">Thank you for exploring my portfolio! Feel free to connect with me on social media.</p>
<p class="text-white mt-4 mb-2"> Keep striving for greatness 🚀!.</p>
</div>
<!-- Widget 1 END -->
<!-- Widget 2 START -->
<div class="col-lg-6 col-xxl-7">
<div class="row g-4">
<!-- Link block -->
<div class="col-6 col-md-5">
<h5 class="mb-2 mb-md-3 text-white">Quick links</h5>
<ul class="nav flex-column">
<li class="nav-item"><a class="text-white pt-0" href="#home">Home</a></li>
<li class="nav-item"><a class="text-white" href="#about_me">About Me</a></li>
<li class="nav-item"><a class="text-white" href="#skills">Skills</span></a></li>
<li class="nav-item"><a class="text-white" href="#portfolio">Portfolio</a></li>
<li class="nav-item"><a class="text-white" href="#experience">Experience</a></li>
<li class="nav-item"><a class="text-white" href="#contact">Contact</a></li>
</ul>
</div>
<!-- Link block -->
<div class="col-md-7">
<!-- Social buttons -->
<h5 class="mb-2 mb-md-3 text-white">Service</h5>
<ul class="list-inline mb-0 mt-3">
<li class="nav-item"><a class="text-white pt-0" href="#">Landing pages</span></a></li>
<li class="nav-item"><a class="text-white" href="#">Odoo ERP Implementation</span></a></li>
<li class="nav-item"><a class="text-white" href="#">Support pages</span></a></li>
<li class="nav-item"><a class="text-white" href="#">Database Optimization</a></li>
<li class="nav-item"><a class="text-white" href="#">API Integration</a></li>
<li class="nav-item"><a class="text-white" href="#">Training and Workshops</a></li>
</ul>
</div>
</div>
</div>
<!-- Widget 2 END -->
</div>
<!-- Divider -->
<hr class="mt-4 mb-0">
<!-- Bottom footer -->
<div class="d-md-flex justify-content-between align-items-center text-center text-lg-start py-4">
<!-- copyright text -->
<p class="text-white text-muted">
<small>
Copyright © <span class="current-year"></span> Alexis Cabrera | All rights reserved.
</small>
</p>
<!-- copyright links-->
<div class="col-md">
<!-- Links -->
<ul class="list-unstyled list-inline text-md-right">
<li class="list-inline-item mr-2">
<a href="#" class="text-white">
Terms and conditions
</a>
</li>
<li class="list-inline-item mr-2">
<a href="#" class="text-white">
Privacy policy
</a>
</li>
</ul>
</div>
</div>
</div>
</div> <!-- / .container -->
</footer>
<!-- JAVASCRIPT
================================================== -->
<!-- Global JS -->
<script src="assets/libs/jquery/dist/jquery.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCnKt8_N4-FKOnhI_pSaDL7g_g-XI1-R9E"></script>
<!-- Plugins JS -->
<script src="assets/libs/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/libs/flickity/dist/flickity.pkgd.min.js"></script>
<script src="assets/libs/flickity-fade/flickity-fade.js"></script>
<script src="assets/libs/jquery-parallax.js/parallax.min.js"></script>
<script src="assets/libs/waypoints/lib/jquery.waypoints.min.js"></script>
<script src="assets/libs/waypoints/lib/shortcuts/inview.min.js"></script>
<script src="assets/libs/fullpage.js/vendors/scrolloverflow.min.js"></script>
<script src="assets/libs/fullpage.js/dist/fullpage.min.js"></script>
<script src="assets/libs/highlightjs/highlight.pack.min.js"></script>
<!-- SweetAlert2 JS -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- Theme JS -->
<script src="assets/js/theme.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
document.getElementById("contactForm").addEventListener("submit", function (event) {
event.preventDefault(); // Evitar que la página se recargue
let formData = new FormData(this); // Capturar los datos del formulario
fetch("php/send_email.php", {
method: "POST",
body: formData
})
.then(response => response.json())
.then(data => {
if (data.status === "success") {
Swal.fire({
title: "Success!",
text: data.message,
icon: "success",
confirmButtonText: "OK"
});
document.getElementById("contactForm").reset(); // Limpiar el formulario
} else {
Swal.fire({
title: "Error!",
text: data.message,
icon: "error",
confirmButtonText: "Try Again"
});
}
})
.catch(error => {
Swal.fire({
title: "Error!",
text: "Something went wrong. Please try again later.",
icon: "error",
confirmButtonText: "OK"
});
});
});
});
</script>
<script>