-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
556 lines (486 loc) · 35.3 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
<!DOCTYPE html>
<html class="scroll-smooth scroll-p-8" lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Evilazio Ricarte - Senior Full Stack Engineer</title>
<meta name="description"
content="The Personal portifolio of a Senior Full Stack Engineer with 5 years of experience in Full Stack (Angular + .NET) development area.">
<meta name="keywords" content="Evilazio Ricarte, Full Stack Engineer, The Best Senior Full Stack Engineer">
<meta name="robots" content="index, follow">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- PWA TAGS -->
<link rel="manifest" href="manifest.webmanifest">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="msapplication-starturl" content="/">
<meta name="theme-color" content="#020617">
<!-- Import tailwind -->
<link href="/output.css" rel="stylesheet">
<!-- Import Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet" media="print" onload="this.media='all'">
</head>
<body
class=" text-gray-900 flex flex-col selection:bg-slate-950 selection:text-white dark:selection:bg-white dark:selection:text-black bg-slate-200 dark:bg-slate-950 dark:text-slate-200 overflow-auto min-h-full">
<header
class="fixed top-0 z-50 sm:px-4 py-4 flex justify-center items-center flex-row w-full backdrop-blur-sm sm:justify-between">
<a class="font-thin hover:underline text-lg hidden sm:inline" aria-label="back to the top"
href="#" title="go to the top">evilazio.dev</a>
<nav class="gap-4 flex">
<a class="hover:underline text-base hidden sm:block" title="scroll to about section "
aria-label="go to about section" href="#about">about</a>
<a class="hover:underline text-base" title="scroll to about section " aria-label="go to about section"
href="#experiences">experiences</a>
<a class="hover:underline text-base" title="scroll to experiences section "
aria-label="go to experiences section" href="#projects">projects</a>
<a class="hover:underline text-base hidden sm:block" title="scroll to skills section "
aria-label="go to skills section" href="#skills">skills</a>
<a class="hover:underline text-base" title="scroll to certifications section "
aria-label="go to certifications section" href="#certifications">certifications</a>
<a class="hover:underline text-base" title="scroll to contact section " aria-label="go to contact section"
href="#contact">contact</a>
</nav>
</header>
<main class="flex flex-col">
<section id="#"
class="relative flex flex-col justify-center items-center border-b-slate-300 dark:border-b-slate-800 border-b-2 border-solid px-4 py-4 w-full h-screen overflow-hidden">
<div
class="flex flex-col items-center gap-8 sm:flex-row backdrop-blur-[8px] p-16 rounded-lg bg-opacity-60 bg-slate-200 dark:bg-slate-950 dark:bg-opacity-60 z-10">
<img loading="lazy" class="rounded-full" width="140px" src="/assets/images/profile.webp"
alt="My profile picture" title="My profile picture" >
<div class="flex flex-col gap-2">
<h1 class="text-xl flex flex-row">Hi, I'm <strong class="ml-2">Evilazio Ricarte</strong> <img
loading="lazy" src="/assets/images/br-flag.svg" width="20px" height="16px"
alt="Brazil country flag" class="ml-auto mr-auto" title="Brazil country flag" class="ml-auto mr-auto" ></h1>
<div class="relative flex flex-row w-full rounded-lg overflow-hidden">
<div class="flex-1 text-center text-sm font-medium bg-blue-200 dark:bg-blue-800 px-3 py-1">
Senior
</div>
<div class="flex-1 text-center text-sm font-medium bg-green-200 dark:bg-green-800 px-3 py-1">
Leader</div>
</div>
<h2 class="font-bold uppercase text-5xl" style="letter-spacing: -.1rem;"> Full Stack <br>
<span style="letter-spacing: .225rem;">Enginner</span>
</h2>
<div class="flex flex-row gap-2 mt-1 flex-wrap ">
<a href="https://www.linkedin.com/in/evilazio-ricarte-29ab4a1a8/" target="_blank"
aria-label="click here to go to my linkedin page" title="Linkedin"
class="transition-all bg-slate-200 dark:shadow-slate-800 dark:bg-slate-950 flex flex-row items-center gap-2 rounded-full text-xs font-bold px-3 py-1 cursor-pointer shadow-md hover:shadow-none hover:text-white hover:bg-blue-500 dark:hover:bg-blue-800">
<i class="w-3 h-3" icon-name="linkedin"></i>
</a>
<a href="mailto:[email protected]" target="_blank"
aria-label="click here to write me an e-mail" title="E-mail"
class="transition-all bg-slate-200 dark:shadow-slate-800 dark:bg-slate-950 flex flex-row items-center gap-2 rounded-full text-xs font-bold px-3 py-1 cursor-pointer shadow-md hover:shadow-none hover:text-white hover:bg-blue-500 dark:hover:bg-blue-800">
<i class="w-3 h-3" icon-name="mail-plus"></i>
</a>
<a href="https://drive.google.com/file/d/1bNHMqTr4BqSNk7Li91m60B0qG6AtjaBX/view?usp=sharing"
title="Resume Download" target="_blank" aria-label="click here to download my resume"
class="transition-all bg-slate-200 dark:shadow-slate-800 dark:bg-slate-950 flex flex-row items-center gap-2 rounded-full text-xs font-bold px-3 py-1 cursor-pointer shadow-md hover:shadow-none hover:text-white hover:bg-blue-500 dark:hover:bg-blue-800">
<i class="w-3 h-3" icon-name="download"></i>
</a>
<a href="https://web.whatsapp.com/send/?phone=5511954464959&text=Ol%C3%A1%20Evilazio,%20vim%20pela%20sua%20pagina%20evilazio.dev."
target="_blank" aria-label="Click here to talk with me" title="Text me on Whatsapp"
class="transition-all bg-slate-200 dark:shadow-slate-800 dark:bg-slate-950 flex flex-row flex-1 justify-center items-center gap-2 rounded-full text-xs font-semibold px-3 py-1 cursor-pointer shadow-md hover:shadow-none hover:text-white hover:bg-blue-500 dark:hover:bg-blue-800">
Let's Talk <i class="w-3 h-3" icon-name="messages-square"></i></a>
</div>
</div>
</div>
<!-- Flying images -->
<div class="absolute top-0 left-0 parallax w-full h-full" aria-hidden="true">
<img loading="lazy" src="/assets/images/angular.svg"
class="object-contain hidden blur-[2px] w-20 absolute flyer" alt="angular logo image" title="angular logo image" >
<img loading="lazy" src="/assets/images/dotnet.png"
class="object-contain hidden rounded-full overflow-hidden blur-[2px] w-20 absolute flyer"
alt="dotnet logo image" title="dotnet logo image" >
<img loading="lazy" src="/assets/images/javascript.svg"
class="object-contain hidden rounded-xl overflow-hidden blur-[2px] w-20 absolute flyer"
alt="javascript logo image" title="javascript logo image" >
<img loading="lazy" src="/assets/images/typescript.svg"
class="object-contain hidden rounded-xl overflow-hidden blur-[2px] w-20 absolute flyer"
alt="typescript logo image" title="typescript logo image" >
<img loading="lazy" src="/assets/images/html.svg"
class="object-contain hidden rounded-xl overflow-hidden blur-[2px] w-20 absolute flyer"
alt="html logo image" title="html logo image" >
<img loading="lazy" src="/assets/images/css.svg"
class="object-contain hidden rounded-xl overflow-hidden blur-[2px] w-20 absolute flyer"
alt="css logo image" title="css logo image" >
<img loading="lazy" src="/assets/images/csharp.svg"
class="object-contain hidden rounded-xl overflow-hidden blur-[2px] w-20 absolute flyer"
alt="csharp logo image" title="csharp logo image" >
</div>
<a class=" absolute bottom-0 left-[50%] translate-x-[-50%] p-4 bg-opacity-60 hover:bg-slate-300 dark:hover:bg-slate-900 rounded"
aria-label="click to scroll to the about section" href="#about"><i class="animate-bounce"
icon-name="chevron-down"></i></a>
</section>
<section class="relative p-8 w-full max-w-[860px] m-auto" id="about">
<h2 class="text-3xl mb-8 uppercase">About</h2>
<p class="text-xl">
Hello, my name is Evilazio Ricarte, I'm <b>23 years old</b>, and I reside in São Paulo, <b>Brazil</b>.
<br>
I'm a technology enthusiast and started programming at the age of 13, developing websites and making
game modifications. I graduated in <b>Systems Analysis and Development</b> and also completed a
specialization in <b>Software Engineering and Agile Methods</b>.
<br><br>
Over the past 5 years, I have gained formal experience in <b>Full Stack</b> development using
<b>Angular</b> and <b>.NET</b>,
where I have had the responsability <b>to architect solutions</b>, <b>manage projects</b>, and act as a
<b>Tech Lead</b>.
<br><br>
In the future, my aim is to actively engage in new challenging projects, fostering my growth as a
tech lead while continually enhancing my full-stack development skills.
<br><br>
</p>
<p class="font-thin text-xl mt-6">"I believe that <b>knowledge sharing</b> is the crucial point to achieving
even better results in
the deliveries."</p>
</section>
<section class="relative p-8 w-full max-w-[860px] m-auto" id="experiences">
<h2 class="text-3xl mb-8 uppercase">Professional Experiences</h2>
<div class="experience-bar relative flex items-center gap-4 w-full">
<img loading="lazy" src="assets/images/jellyfish.png" class="mb-auto rounded-lg sticky top-36"
width="48px" height="48px" alt="Jellyfish's logo, it is a big white 'J' and a blue Background" title="Jellyfish's logo, it is a big white 'J' and a blue Background"
title="Jellyfish">
<div class="flex flex-col w-full group">
<h3 class="flex items-center flex-wrap text-xl max-w-full font-medium gap-x-2 ">
<a href="https://jellyfish.com" target="_blank" title="Access Jellyfish website"
class="flex items-center flex-[0_0_350px] max-w-full gap-x-2 hover:underline mr-auto">
<b>Jellyfish</b>
<i class="w-4 " icon-name="external-link"></i>
</a>
<span class="flex items-center gap-3 text-right font-thin text-base">4 years 11 months <i
class="w-4" icon-name="clock"></i></span>
</h3>
<p>São Paulo, SP - Brazil (Remote)</p>
<ul
class="opacity-50 group-hover:opacity-50 hover:group-hover:opacity-100 pb-4 border-b border-slate-400 ">
<h4 class="mt-4 text-xl w-full mb-2">
<b class="font-medium">Trainee - Web Developer (In-person)</b>
<p class="text-sm">Jul 2018 - Jan 2019</p>
</h4>
<li>Building interfaces and front-end functionalities (HTML, CSS & JS).</li>
<li>Fixing some issues on back-end code (C#).</li>
</ul>
<ul
class="opacity-50 group-hover:opacity-50 hover:group-hover:opacity-100 pb-4 border-b border-slate-400 ">
<h4 class="mt-4 text-xl w-full mb-2">
<b class="font-medium">Mid-Level Full Stack Developer</b>
<p class="text-sm">Feb 2019 - Feb 2021 </p>
</h4>
<li>Developing complete solutions using .NET MVC and SQL
Server.</li>
<li>Making database models & use cases.</li>
<li>Refactoring and Good Practices implementations.</li>
</ul>
<ul class=" group-hover:opacity-50 hover:group-hover:opacity-100">
<h4 class="mt-4 text-xl w-full mb-2">
<b class="font-medium">Senior Full Stack Engineer Manager</b>
<p class="text-sm">Feb 2021 - May 2023 </p>
</h4>
<li>Tech Lead of the development team.</li>
<li>Full Stack Developing: Angular and .NET Core (C#).</li>
<li>Planning & Setup projects.</li>
</ul>
</div>
</div>
</section>
<section class="relative p-8 w-full max-w-[860px] m-auto" id="projects">
<h2 class="text-3xl mb-8 uppercase">Projects</h2>
<ul class="grid grid-cols-1 gap-8 justify-center items-start sm:grid-cols-2">
<li class="flex flex-col w-[420px] max-w-[100%] mx-auto">
<h3 class="">
<a class="flex flex-row items-center justify-center text-2xl mb-2 gap-2 hover:underline"
target="_blank" href="https://trisul-sa.com.br" title="Access Trisul project website">Trisul S.A <i class="w-4"
icon-name="external-link"></i></a>
</h3>
<p class="mb-4 text-sm text-center w-[90%] m-auto">
It is a website of a high standard building company in Brazil that have a large visitors and
unique impression per month.</p>
<div class="relative flex flex-row items-center mb-4 m-auto ">
<img loading="lazy" class="relative pr-8" src="/assets/images/trisul/pc.webp" width="420px"
height="200px" alt="Trisul website shown on a computer" title="Trisul website shown on a computer" >
<img loading="lazy"
class="absolute z-10 top-[50%] translate-y-[-50%] right-0 object-contain max-h-[80%]"
src="/assets/images/trisul/mobile.webp" width="120px" height="160px"
alt="Trisul website shown on a smartphone" title="Trisul website shown on a smartphone" >
</div>
<ul class="flex flex-row gap-2 justify-center flex-wrap mb-4 w-[85%] m-auto"
aria-label="Tecnologias utilizadas">
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">Angular
</li>
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">SSR</li>
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">PWA</li>
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">Custom
CMS</li>
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">Restfull
API</li>
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">.NET
</li>
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">MySQL
</li>
</ul>
</li>
<li class="flex flex-col w-[420px] max-w-[100%] mx-auto">
<h3 class="">
<a class="flex flex-row items-center justify-center text-2xl mb-2 gap-2 hover:underline"
href="https://vamos.com.br" title="Access Vamos project website" target="_blank">Vamos <i class="w-4"
icon-name="external-link"></i></a>
</h3>
<p class="mb-4 text-sm text-center w-[90%] m-auto">
A website for a top rental company offering heavy equipment, trucks and
implements, owned by a major Brazilian vehicle rental holding.</p>
<div class="relative flex flex-row items-center mb-4 m-auto ">
<img loading="lazy" class="relative pr-8" src="/assets/images/vamos/pc.webp" width="420px"
height="200px" alt="Vamos website shown on a computer" title="Vamos website shown on a computer" >
<img loading="lazy"
class="absolute z-10 top-[50%] translate-y-[-50%] right-0 object-contain max-h-[80%]"
src="/assets/images/vamos/mobile.webp" width="120px" height="160px"
alt="Vamos website shown on a smartphone" title="Vamos website shown on a smartphone" >
</div>
<ul class="flex flex-row gap-2 justify-center flex-wrap mb-4 w-[85%] m-auto"
aria-label="Tecnologias utilizadas">
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">Angular
</li>
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">SSR</li>
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">PWA</li>
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">Strapi
CMS</li>
<li class="rounded-full px-4 py-1 text-xs font-semibold bg-slate-300 dark:bg-slate-800">Restfull
API</li>
</ul>
</li>
</ul>
</section>
<section class="relative p-8 w-full max-w-[860px] m-auto" id="skills">
<h2 class="text-3xl mb-8 uppercase">Skills</h2>
<ul class="flex flex-col gap-4 w-full" aria-label="List of my main skills">
<li class="flex-1 grid grid-cols-[100px_1fr_50px] gap-4 items-center" aria-label="JavaScript is 95%">
<h3 class="flex flex-row items-center">
<span class="font-bold">JavaScript</span>
</h3>
<div class="bar bg-slate-300 dark:bg-slate-800 rounded-full flex-1 h-2 overflow-hidden">
<div class="progress bg-blue-500 h-full rounded-full" style="width: 95%;"></div>
</div>
<span class="text-right w-full">95%</span>
</li>
<li class="flex-1 grid grid-cols-[100px_1fr_50px] gap-4 items-center" aria-label="Strapi CMS is 95%">
<h3 class="flex flex-row items-center">
<span class="font-bold">Strapi CMS</span>
</h3>
<div class="bar bg-slate-300 dark:bg-slate-800 rounded-full flex-1 h-2 overflow-hidden">
<div class="progress bg-blue-500 h-full rounded-full" style="width: 95%;"></div>
</div>
<span class="text-right w-full">95%</span>
</li>
<li class="flex-1 grid grid-cols-[100px_1fr_50px] gap-4 items-center" aria-label="C# is 85%">
<h3 class="flex flex-row items-center">
<span class="font-bold">C#</span>
</h3>
<div class="bar bg-slate-300 dark:bg-slate-800 rounded-full flex-1 h-2 overflow-hidden">
<div class="progress bg-blue-500 h-full rounded-full" style="width: 85%;"></div>
</div>
<span class="text-right w-full">85%</span>
</li>
<li class="flex-1 grid grid-cols-[100px_1fr_50px] gap-4 items-center" aria-label="HTML + CSS is 98%">
<h3 class="flex flex-row items-center">
<span class="font-bold">HTML + CSS</span>
</h3>
<div class="bar bg-slate-300 dark:bg-slate-800 rounded-full flex-1 h-2 overflow-hidden">
<div class="progress bg-blue-500 h-full rounded-full" style="width: 98%;"></div>
</div>
<span class="text-right w-full">98%</span>
</li>
<li class="flex-1 grid grid-cols-[100px_1fr_50px] gap-4 items-center" aria-label="TypeScript is 90%">
<h3 class="flex flex-row items-center">
<span class="font-bold">TypeScript</span>
</h3>
<div class="bar bg-slate-300 dark:bg-slate-800 rounded-full flex-1 h-2 overflow-hidden">
<div class="progress bg-blue-500 h-full rounded-full" style="width: 90%;"></div>
</div>
<span class="text-right w-full">90%</span>
</li>
<li class="flex-1 grid grid-cols-[100px_1fr_50px] gap-4 items-center" aria-label="SQL is 65%">
<h3 class="flex flex-row items-center">
<span class="font-bold">SQL</span>
</h3>
<div class="bar bg-slate-300 dark:bg-slate-800 rounded-full flex-1 h-2 overflow-hidden">
<div class="progress bg-blue-500 h-full rounded-full" style="width: 65%;"></div>
</div>
<span class="text-right w-full">65%</span>
</li>
<li class="flex-1 grid grid-cols-[100px_1fr_50px] gap-4 items-center" aria-label="Angular is 95%">
<h3 class="flex flex-row items-center">
<span class="font-bold">Angular</span>
</h3>
<div class="bar bg-slate-300 dark:bg-slate-800 rounded-full flex-1 h-2 overflow-hidden">
<div class="progress bg-blue-500 h-full rounded-full" style="width: 95%;"></div>
</div>
<span class="text-right w-full">95%</span>
</li>
<li class="flex-1 grid grid-cols-[100px_1fr_50px] gap-4 items-center" aria-label="NET is 80%">
<h3 class="flex flex-row items-center">
<span class="font-bold">.NET</span>
</h3>
<div class="bar bg-slate-300 dark:bg-slate-800 rounded-full flex-1 h-2 overflow-hidden">
<div class="progress bg-blue-500 h-full rounded-full" style="width: 80%;"></div>
</div>
<span class="text-right w-full">80%</span>
</li>
<li class="flex-1 grid grid-cols-[100px_1fr_50px] gap-4 items-center" aria-label="English is 75%">
<h3 class="flex flex-row items-center">
<span class="font-bold">English</span>
</h3>
<div class="bar bg-slate-300 dark:bg-slate-800 rounded-full flex-1 h-2 overflow-hidden">
<div class="progress bg-blue-500 h-full rounded-full" style="width: 75%;"></div>
</div>
<span class="text-right w-full">75%</span>
</li>
</ul>
<p class="mt-4 text-xs font-thin">% Estimated amount of my knowledge relative to how much can be known about
each one..</p>
</section>
<section class="relative p-8 w-full max-w-[860px] m-auto" id="certifications">
<h2 class="text-3xl mb-8 uppercase">Certifications</h2>
<ul class="flex flex-row flex-wrap justify-center m-auto gap-8 select-none overflow-x-auto max-w-full pb-4">
<li class="transition-all flex flex-[1_0_350px] max-w-full flex-col w-64 gap-4 rounded-lg
p-6 snap-start dark:bg-slate-800 bg-slate-100 items-center text-center">
<img loading="lazy" class="pointer-events-none w-full max-w-full object-contain max-h-12"
src="assets/images/certifications/marcaUnicidVariacao.svg" alt="Unicid logo image " title="Unicid logo image " >
<h3 class=" text-md uppercase font-medium mt-4">Software Engineering and <br> Agile Methods</h3>
<span class="text-sm mt-auto">Specialization</span>
</li>
<li class="transition-all flex flex-[1_0_350px] max-w-full flex-col w-64 gap-4 rounded-lg
p-6 snap-start dark:bg-slate-800 bg-slate-100 items-center text-center">
<img loading="lazy" class="pointer-events-none w-full max-w-full object-contain max-h-12"
src="assets/images/certifications/marcaCruzeirodosulVariacao.svg" alt="Cruzeiro do Sul logo image" title="Cruzeiro do Sul logo image" >
<h3 class=" text-md uppercase font-medium mt-4">Analysis and <br> Systems development</h3>
<span class="text-sm mt-auto">Bachelor of Technology</span>
</li>
</ul>
</section>
<section class="relative p-8 w-full max-w-[860px] m-auto" id="contact">
<h2 class="text-3xl mb-8 uppercase">Contact & Links</h2>
<div class="flex flex-row w-full items-start flex-wrap gap-8">
<div class="flex flex-col sm:border-r-[1px] sm:border-r-slate-300 sm:pr-8 flex-[1_1_240px]">
<p class="text-lg flex flex-row items-center font-bold">Evilazio Ricarte <span
class="text-sm ml-2 font-normal">~ He/Him</span></p>
<p class="text-sm font-medium flex items center gap-2"><img loading="lazy"
src="/assets/images/br-flag.svg" width="20px" height="16px" alt="Brazil country flag" title="Brazil country flag" >
Portuguese <span class="font-normal">-
native</span></p>
<p class="text-sm font-medium flex items center gap-2"><img loading="lazy"
src="/assets/images/usa-flag.svg" width="20px" height="16px"
alt="United States of America country flag" title="United States of America country flag"> English <span class="font-normal" title="United States of America country flag"> English <span class="font-normal" >-
intermediate</span></p>
<a href="https://drive.google.com/file/d/1raREi-65ROvqTI1p4COHTrfCzjbyEh2m/view?usp=sharing"
target="_blank" title="Resume Download (Portuguese version)"
class="hover:bg-blue-600 dark:hover:bg-blue-800 w-full bg-blue-600 mt-6 text-white hover:shadow-none active:bg-emerald-400 hover:text-white justify-center text-sm transition-all flex flex-row gap-2 items-center rounded-full shadow-lg py-1 px-4">
Resume (Portuguese)
<i class="w-3" icon-name="download"></i>
</a>
<a href="https://drive.google.com/file/d/1bNHMqTr4BqSNk7Li91m60B0qG6AtjaBX/view?usp=sharing"
target="_blank" title="Resume Download (English version)"
class="hover:bg-blue-600 dark:hover:bg-blue-800 w-full bg-blue-600 mt-2 text-white hover:shadow-none active:bg-emerald-400 hover:text-white justify-center text-sm transition-all flex flex-row gap-2 items-center rounded-full shadow-lg py-1 px-4">
Resume (English)
<i class="w-3" icon-name="download"></i>
</a>
</div>
<div class="grid gap-4 flex-[99_99_300px] "
style="grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); ">
<a href="https://www.linkedin.com/in/evilazio-ricarte-29ab4a1a8/" target="_blank"
title="Access my LinkedIn page"
class="hover:bg-blue-500 dark:hover:bg-blue-800 hover:shadow-none dark:shadow-slate-800 active:bg-emerald-400 hover:text-white justify-center text-sm transition-all flex flex-row gap-2 items-center rounded-full shadow-lg py-1 px-4">
LinkedIn
<i class="w-3" icon-name="external-link"></i>
</a>
<a href="https://github.com/Evilazio" target="_blank"
title="Access my GitHub page"
class="hover:bg-blue-500 dark:hover:bg-blue-800 hover:shadow-none dark:shadow-slate-800 active:bg-emerald-400 hover:text-white justify-center text-sm transition-all flex flex-row gap-2 items-center rounded-full shadow-lg py-1 px-4">
GitHub
<i class="w-3" icon-name="external-link"></i>
</a>
<a href="mailto:[email protected]" target="_blank" title="Send me an e-mail"
class="hover:bg-blue-500 dark:hover:bg-blue-800 hover:shadow-none dark:shadow-slate-800 active:bg-emerald-400 hover:text-white justify-center text-sm transition-all flex flex-row gap-2 items-center rounded-full shadow-lg py-1 px-4">
E-mail
<i class="w-3" icon-name="external-link"></i>
</a>
<a href="https://web.whatsapp.com/send/?phone=5511954464959&text=Ol%C3%A1%20Evilazio,%20vim%20pela%20sua%20pagina%20evilazio.dev."
target="_blank" title="Talk to me on Whatsapp"
class="hover:bg-blue-500 dark:hover:bg-blue-800 hover:shadow-none dark:shadow-slate-800 active:bg-emerald-400 hover:text-white justify-center text-sm transition-all flex flex-row gap-2 items-center rounded-full shadow-lg py-1 px-4">
Whatsapp
<i class="w-3" icon-name="external-link"></i>
</a>
<a href="https://stackoverflow.com/users/10241693/evilazio-ricarte" target="_blank"
title="Access my StackOverflow page"
class="hover:bg-blue-500 dark:hover:bg-blue-800 hover:shadow-none dark:shadow-slate-800 active:bg-emerald-400 hover:text-white justify-center text-sm transition-all flex flex-row gap-2 items-center rounded-full shadow-lg py-1 px-4">
StackOverflow
<i class="w-3" icon-name="external-link"></i>
</a>
<a href="https://www.npmjs.com/~evilazio" target="_blank" title="Access my npm.js page"
class="hover:bg-blue-500 dark:hover:bg-blue-800 hover:shadow-none dark:shadow-slate-800 active:bg-emerald-400 hover:text-white justify-center text-sm transition-all flex flex-row gap-2 items-center rounded-full shadow-lg py-1 px-4">
npm.js
<i class="w-3" icon-name="external-link"></i>
</a>
<button title="Share this page"
class="share hover:bg-blue-500 dark:hover:bg-blue-800 hover:shadow-none dark:shadow-slate-800 active:bg-emerald-400 hover:text-white justify-center text-sm transition-all flex flex-row gap-2 items-center rounded-full shadow-lg py-1 px-4">
Share this page
<i class="w-3" icon-name="share-2"></i>
</button>
</div>
</div>
</section>
<footer class="relative p-8 w-full max-w-[860px] m-auto pt-8 pb-16 text-center">
Thank you! 😉
</footer>
</main>
<div class="fixed bottom-0 right-0 p-2 z-20 flex flex-col gap-2">
<a href="#" aria-label="Click here to share this page" title="Share this page"
class=" hover:bg-blue-600 dark:hover:bg-blue-600 bg-slate-500 dark:bg-slate-600 text-white hover:shadow-none
active:bg-emerald-400 hover:text-white justify-center text-smaatransition-all flex flex-row w-12 h-12 gap-2 items-center rounded-full shadow-lg ">
<i class="w-4" icon-name="arrow-up"></i>
</a>
<button aria-label="Click here to share this page" title="Share this page"
class="share hover:bg-blue-600 dark:hover:bg-blue-800 bg-slate-500 dark:bg-blue-700 text-white hover:shadow-none
active:bg-emerald-400 hover:text-white justify-center text-sm transition-all flex flex-row w-12 h-12 gap-2 items-center rounded-full shadow-lg ">
<i class="w-4" icon-name="share-2"></i>
</button>
</div>
<script src="js/util.js"></script>
<script src="js/share.js"></script>
<script src="js/parallax.js"></script>
<script src="js/flyer.js"></script>
<!-- Lucide icons -->
<script src="https://unpkg.com/lucide@latest"></script>
<script>
lucide.createIcons();
</script>
<!-- Register ServiceWorker -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
navigator.serviceWorker.register('/service-worker.js')
.then(function (registration) {
console.log('Service worker installed successfuly: ', registration);
registration.addEventListener('updatefound', () => {
console.log('NEW SERVICE WORKER DETECTED. UPDATING IT RIGHT NOW.')
const newWorker = registration.installing;
newWorker.addEventListener('statechange', () => {
if (newWorker.state === 'installed' && navigator.serviceWorker.controller) {
// Installed new detected version and skipping reload to be activated, activating immediately
navigator.serviceWorker.controller.postMessage({ action: 'skipWaiting' });
console.log('Service worker updated successfuly')
}
});
});
})
.catch(function (error) {
console.log('Failed to install the service worker: ', error);
});
});
}
</script>
</body>
</html>