-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
366 lines (327 loc) · 11.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Álvaro Neves - Principal Software Developer</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<style>
:root {
--bg-color: #1a1a1a;
--text-color: #ffffff;
--primary-color: #4a90e2;
--secondary-color: #2c3e50;
--accent-color: #e74c3c;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--bg-color);
transition: all 0.3s ease;
}
a, a:visited {
color: white;
text-decoration: underline;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
background-color: var(--secondary-color);
padding: 2rem 0;
text-align: center;
}
.profile-container {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
}
.profile-picture {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
border: 4px solid var(--primary-color);
margin-right: 2rem;
transition: transform 0.3s ease;
}
.profile-picture:hover {
transform: scale(1.05);
}
.name-title {
text-align: left;
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
color: var(--primary-color);
}
h2 {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--primary-color);
}
.section {
padding: 4rem 0;
border-bottom: 1px solid var(--secondary-color);
}
.section:last-child {
border-bottom: none;
}
.skill-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.skill-item {
background-color: var(--secondary-color);
padding: 10px 20px;
border-radius: 25px;
font-size: 0.9rem;
transition: all 0.3s ease;
}
.skill-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.experience-item {
margin-bottom: 2rem;
}
.experience-item h3 {
color: var(--primary-color);
}
.contact-info {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 20px;
}
.contact-item {
display: flex;
align-items: center;
gap: 10px;
}
.contact-item i {
font-size: 1.5rem;
color: var(--primary-color);
}
.skill-meter {
width: 100%;
background-color: var(--secondary-color);
border-radius: 10px;
margin-top: 5px;
overflow: hidden;
}
.skill-level {
height: 10px;
background-color: var(--primary-color);
border-radius: 10px;
transition: width 1s ease-in-out;
}
@media (max-width: 768px) {
.contact-info {
flex-direction: column;
align-items: flex-start;
}
.profile-container {
flex-direction: column;
text-align: center;
}
.profile-picture {
margin-right: 0;
margin-bottom: 1rem;
}
.name-title {
text-align: center;
}
}
/* Animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animated {
animation: fadeIn 1s ease-out;
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="profile-container">
<img src="./IMG_4330.jpeg" alt="Álvaro Neves" class="profile-picture">
<div class="name-title">
<h1>Álvaro Neves</h1>
<p>Principal Software Developer | FullStack Backend Strong</p>
</div>
</div>
</div>
</header>
<main class="container">
<section class="section animated">
<h2>About Me</h2>
<p>With over a decade of experience, I've been at the forefront of helping companies revolutionize their
businesses through cutting-edge development practices and agile methodologies. My journey in programming
began at the tender age of 8, instilling in me a lifelong passion for learning and innovation.
Recognized for my exceptional communication skills and problem-solving prowess, I bring a unique blend
of technical expertise and interpersonal finesse to every project I undertake.</p>
</section>
<section class="section animated">
<h2>Contact Information</h2>
<div class="contact-info">
<div class="contact-item">
<i class="fas fa-map-marker-alt"></i>
<span>Vila Velha/ES - Brazil</span>
</div>
<div class="contact-item">
<i class="fas fa-phone"></i>
<span>+55279...<a href="#" class="view-more">view more</a></span>
</div>
<div class="contact-item">
<i class="fas fa-envelope"></i>
<span>al...<a href="#" class="view-more">view more</a></span>
</div>
<div class="contact-item">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/netoneves/" target="_blank">linkedin.com/in/netoneves/</a>
</div>
</div>
</section>
<section class="section animated">
<h2>Skills</h2>
<h3>Languages</h3>
<div class="skill-list">
<div class="skill-item">
PHP
<div class="skill-meter">
<div class="skill-level" style="width: 95%;"></div>
</div>
</div>
<div class="skill-item">
Javascript (NodeJS, Typescript)
<div class="skill-meter">
<div class="skill-level" style="width: 80%;"></div>
</div>
</div>
<div class="skill-item">
Bash
<div class="skill-meter">
<div class="skill-level" style="width: 60%;"></div>
</div>
</div>
</div>
<h3>Tools/Technologies</h3>
<div class="skill-list">
<div class="skill-item">Codeigniter</div>
<div class="skill-item">Symfony</div>
<div class="skill-item">Laravel</div>
<div class="skill-item">AWS Services</div>
<div class="skill-item">Docker</div>
<div class="skill-item">Git</div>
<div class="skill-item">Serverless</div>
<div class="skill-item">HTML/CSS/Javascript</div>
<div class="skill-item">Bootstrap</div>
<div class="skill-item">ReactJS</div>
</div>
<h3>Database</h3>
<div class="skill-list">
<div class="skill-item">MySQL/mariaDB</div>
<div class="skill-item">Elastic Search</div>
<div class="skill-item">MongoDB</div>
</div>
</section>
<section class="section animated">
<h2>Professional Experience</h2>
<div class="experience-item">
<h3>BairesDev - Full-stack Developer</h3>
<p>June 2024 - Current</p>
<ul>
<li>The tech stack is Symfony 7 and MySQL.</li>
<li>Improve this latter!</li>
</ul>
</div>
<div class="experience-item">
<h3>E-core - Software Specialist</h3>
<p>April 2022 - February 2024</p>
<ul>
<li>Spearheaded project cost optimization initiatives and system updates to align with cutting-edge
security standards</li>
<li>Leveraged a diverse tech stack including Symfony 4/5, Digital Ocean Functions, Docker Compose,
JIRA, PHPUnit, and VueJS</li>
</ul>
</div>
<div class="experience-item">
<h3>Vi Bank - Software Architect</h3>
<p>September 2020 - January 2021</p>
<ul>
<li>Created an architecture for a digital bank using a BaaS service.</li>
<li>Stack was Serverless with Lambda and Secret Manager</li>
</ul>
</div>
<div class="experience-item">
<h3>Dreamcasa - Full-stack Developer</h3>
<p>January 2017 - April 2022</p>
<ul>
<li>Engineered a high-performance bot capable of processing and responding to up to 2000 emails
daily</li>
<li>Orchestrated seamless system integrations with major real estate entities across Latin America
</li>
<li>Utilized AWS RDS, honed Business Intelligence acumen, and architected robust RESTful APIs</li>
</ul>
</div>
<div class="experience-item">
<h3>Promove7 - Full-stack Developer and XDK Developer</h3>
<p>October 2013 - February 2016</p>
<ul>
<li>Developed a lot of websites for events and advertisements in the city.</li>
<li>Read customer's datafiles such as xml, csv or json to be used in BI.</li>
<li>Send Emails and SMS through Zenvia API.</li>
</ul>
</div>
</section>
</main>
<footer class="section">
<div class="container">
<p>© 2024 Álvaro Neves. All rights reserved.</p>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', (event) => {
const sections = document.querySelectorAll('.section');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animated');
}
});
}, { threshold: 0.1 });
sections.forEach(section => {
observer.observe(section);
});
});
const viewMore = document.querySelectorAll('a.view-more');
viewMore.forEach(function(element){
element.addEventListener('click', () => {
if(window.confirm("Continue to Linkedin")) {
window.location.href = 'https://www.linkedin.com/in/netoneves/';
}
});
})
</script>
</body>
</html>