-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.html
383 lines (359 loc) · 13.1 KB
/
cv.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
<html lang="es">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>CV</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet" />
<style>
/* Estilos para el modo oscuro */
.dark-mode {
--bg-color: #1a202c;
--text-color: #cbd5e0;
--sidebar-bg: #2d3748;
--sidebar-text: #a0aec0;
--border-color: #4a5568;
}
/* Custom styles for light mode */
.light-mode {
--bg-color: #f7fafc;
--text-color: #2d3748;
--sidebar-bg: #edf2f7;
--sidebar-text: #4a5568;
--border-color: #e2e8f0;
}
/* Apply the custom properties */
body {
background-color: var(--bg-color);
color: var(--text-color);
}
.sidebar {
background-color: var(--sidebar-bg);
color: var(--sidebar-text);
}
.border-custom {
border-color: var(--border-color);
}
/* Animations */
.sidebar a {
transition: border-width 0.3s, transform 0.3s;
}
.sidebar a:hover {
border-bottom-width: 2px;
transform: scale(1.05);
}
.profile-img {
transition: transform 0.3s, box-shadow 0.3s;
}
.profile-img:hover {
transform: scale(1.1);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.social-icon {
transition: transform 0.3s, box-shadow 0.3s;
}
.social-icon:hover {
transform: scale(1.2);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
/* Estilos para las tarjetas de tecnologías */
.skill-card {
transition: transform 0.3s, box-shadow 0.3s;
border: 2px solid var(--border-color);
border-radius: 10px;
padding: 16px;
text-align: center;
background-color: var(--sidebar-bg);
color: var(--sidebar-text);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 150px; /* Altura uniforme para todas las tarjetas */
}
.skill-card:hover {
transform: scale(1.05);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.skill-card img {
width: 48px;
height: 48px;
margin-bottom: 8px;
}
.skill-level {
font-size: 0.75rem;
color: var(--text-color);
}
.skills-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
}
/* Responsive styles */
@media (max-width: 768px) {
.skills-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.skills-grid {
grid-template-columns: repeat(1, 1fr);
}
}
</style>
</head>
<body class="light-mode">
<div class="flex min-h-screen">
<!-- Sidebar -->
<div class="w-1/4 sidebar p-6 flex flex-col items-center">
<div class="relative">
<img alt="Profile picture" class="rounded-full w-32 h-32" src="assets/profile 3.jpeg" />
<span class="absolute bottom-0 right-0 bg-green-500 rounded-full w-4 h-4 border-2 border-white">
</span>
</div>
<nav class="mt-6 space-y-4 text-lg">
<a class="block" href="index.html">
Home
</a>
<a class="block" href="cv.html">
CV
</a>
<a class="block" href="projects.html">
Projects
</a>
<hr class="my-4 border-custom" />
<a class="block" href="#">
Contact
</a>
</nav>
<div class="mt-auto flex space-x-4">
<a class="text-gray-600" href="https://github.com/iriberrib">
<i class="fab fa-github">
</i>
</a>
<a class="text-gray-600" href="https://www.linkedin.com/in/benjamin-iriberri/">
<i class="fab fa-linkedin">
</i>
</a>
</div>
</div>
<!-- Main Content -->
<div class="w-3/4 p-12">
<p class="text-xl">
Bienvenido 👋
</p>
<h1 class="text-4xl font-bold mt-2">
Benjamin Iriberri
</h1>
<h2 class="text-2xl mt-1">
<b>QA Analyst & Lead - Support N1 at <span style="color: rgb(255, 94, 0);">Asteroid Technologies</span></b>
</h2>
<h2 class="text-2xl font-bold mb-4">Experiencia</h2>
<div class="space-y-8">
<div class="flex items-start">
<div class="w-1/12 flex justify-center">
<div class="w-4 h-4 bg-black rounded-full mt-1"></div>
</div>
<div class="w-11/12">
<h3 class="font-bold">Jr QA Analyst & Lead / Support N1 - Asteroid Technologies</h3>
<p class="text-sm text-gray-600">dic. 2023 - actualidad. [10 meses]</p>
<p>
Responsable del area de calidad dentro del equipo de desarrollo, encargado de la escritura, ejecución y
documentación de planes de prueba, casos de prueba, documentación, reporte y seguimiento de bugs,
encargado del area de soporte de nivel 1 del area tecnica.
</p>
</div>
</div>
<div class="flex items-start">
<div class="w-1/12 flex justify-center">
<div class="w-4 h-4 bg-black rounded-full mt-1"></div>
</div>
<div class="w-11/12">
<h3 class="font-bold">Jr QA Analyst - Guarnic.</h3>
<p class="text-sm text-gray-600">mar. 2022 - nov. 2023. [1 año y 9 meses]</p>
<p>
Escritura y documentación de user stories; escritura, documentación y ejecución de planes y casos de prueba; reporte, documentación y
seguimiento de bugs; automatización de pruebas End to End con Playwright.
</p>
</div>
</div>
<div class="flex items-start">
<div class="w-1/12 flex justify-center">
<div class="w-4 h-4 bg-black rounded-full mt-1"></div>
</div>
<div class="w-11/12">
<h3 class="font-bold">QA Automation Trainee - ComparaOnline.</h3>
<p class="text-sm text-gray-600">ene. 2020 - feb. 2020 [1 mes].</p>
<p>Automatización de Casos de prueba con Katalon Studio.</p>
</div>
</div>
</div>
<h2 class="text-2xl font-bold mb-4">Educación</h2>
<div class="flex items-start">
<div class="w-1/12 flex justify-center">
<div class="w-4 h-4 bg-black rounded-full mt-1"></div>
</div>
<div class="w-11/12">
<h3 class="font-bold">Tec. Superior en Programación e Innovación Tecnológica - Instituto de Capacitación y Desarrollo Empresarial (INCADE)</h3>
<p class="text-sm text-gray-600">mar. 2023 - actualidad. [1 año y 6 meses]</p>
<p>
</p>
</div>
</div>
<div class="flex items-start">
<div class="w-1/12 flex justify-center">
<div class="w-4 h-4 bg-black rounded-full mt-1"></div>
</div>
<div class="w-11/12">
<h3 class="font-bold">Ingeniería en Informática - Universidad Gastón Dachary</h3>
<p class="text-sm text-gray-600">feb. 2019 - jul. 2021 [2 años y 5 meses]</p>
</div>
</div>
<!-- Sección de tecnologías -->
<h2 class="text-2xl font-bold my-6">Skills</h2>
<div class="skills-grid grid">
<div class="skill-card">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original.svg" alt="HTML" />
<p>HTML</p>
<p class="skill-level">Avanzado</p>
</div>
<div class="skill-card">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original.svg" alt="CSS" />
<p>CSS</p>
<p class="skill-level">Avanzado</p>
</div>
<div class="skill-card">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" alt="JavaScript" />
<p>JavaScript</p>
<p class="skill-level">Avanzado</p>
</div>
<div class="skill-card">
<img src="/assets/typescript.png" alt="TypeScript" />
<p>TypeScript</p>
<p class="skill-level">Avanzado</p>
</div>
<div class="skill-card">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/nodejs/nodejs-original.svg" alt="Node.js" />
<p>Node.js</p>
<p class="skill-level">Avanzado</p>
</div>
<div class="skill-card">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mysql/mysql-original.svg" alt="MySQL" />
<p>MySQL</p>
<p class="skill-level">Basico</p>
</div>
<div class="skill-card">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mongodb/mongodb-original.svg" alt="MongoDB" />
<p>MongoDB</p>
<p class="skill-level">Basico</p>
</div>
<div class="skill-card">
<img src="../assets/Scrum logo.svg" alt="Scrum" />
<p>Scrum</p>
<p class="skill-level">Intermedio</p>
</div>
<div class="skill-card">
<img src="../assets/kanban.png" alt="Kanban" />
<p>Kanban</p>
<p class="skill-level">Intermedio</p>
</div>
<div class="skill-card">
<img src="../assets/WebdriverIO logo.png" alt="WebDriverIO" />
<p>WebDriverIO</p>
<p class="skill-level">Basico</p>
</div>
<div class="skill-card">
<img src="../assets/appium.png" alt="Appium" />
<p>Appium</p>
<p class="skill-level">Básico</p>
</div>
<div class="skill-card">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/selenium/selenium-original.svg" alt="Selenium" />
<p>Selenium</p>
<p class="skill-level">Basico</p>
</div>
<div class="skill-card">
<img src="../assets/Cucumber logo.svg" alt="Cucumber" />
<p>Cucumber</p>
<p class="skill-level">Trainee</p>
</div>
<div class="skill-card">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/postman/postman-original.svg" alt="Postman" />
<p>Postman</p>
<p class="skill-level">Basico</p>
</div>
<div class="skill-card">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-original.svg" alt="Git" />
<p>Git</p>
<p class="skill-level">Intermedio</p>
</div>
<div class="skill-card">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/playwright/playwright-original.svg" alt="Playwright" />
<p>Playwright</p>
<p class="skill-level">Intermedio</p>
</div>
<div class="skill-card">
<img src="../assets/cypress.svg" alt="Cypress" />
<p>Cypress</p>
<p class="skill-level">Intermedio</p>
</div>
<div class="skill-card">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/notion/notion-original.svg" alt="Notion" />
<p>Notion</p>
<p class="skill-level">Avanzado</p>
</div>
</div>
</div>
</div>
<!-- Boton para cambiar de modo claro a oscuro y viceversa -->
<button class="absolute top-4 right-4 p-2 bg-gray-300 dark:bg-gray-700 rounded-full focus:outline-none" id="theme-toggle">
<i class="fas fa-sun text-yellow-500" id="theme-icon"></i>
</button>
<script>
// Javascript para cambiar de tema
const themeToggle = document.getElementById('theme-toggle');
const themeIcon = document.getElementById('theme-icon');
const body = document.body;
// Cargar el tema guardado en localStorage
function loadTheme() {
const savedTheme = localStorage.getItem('theme');
if (savedTheme === 'dark') {
body.classList.add('dark-mode');
body.classList.remove('light-mode');
themeIcon.classList.remove('fa-sun');
themeIcon.classList.add('fa-moon');
themeIcon.classList.remove('text-yellow-500');
themeIcon.classList.add('text-gray-300');
} else {
body.classList.add('light-mode');
body.classList.remove('dark-mode');
themeIcon.classList.remove('fa-moon');
themeIcon.classList.add('fa-sun');
themeIcon.classList.remove('text-gray-300');
themeIcon.classList.add('text-yellow-500');
}
}
// Cambiar el tema y guardar la preferencia en localStorage
themeToggle.addEventListener('click', () => {
if (body.classList.contains('dark-mode')) {
body.classList.remove('dark-mode');
body.classList.add('light-mode');
themeIcon.classList.remove('fa-moon');
themeIcon.classList.add('fa-sun');
themeIcon.classList.remove('text-gray-300');
themeIcon.classList.add('text-yellow-500');
localStorage.setItem('theme', 'light');
} else {
body.classList.remove('light-mode');
body.classList.add('dark-mode');
themeIcon.classList.remove('fa-sun');
themeIcon.classList.add('fa-moon');
themeIcon.classList.remove('text-yellow-500');
themeIcon.classList.add('text-gray-300');
localStorage.setItem('theme', 'dark');
}
});
// Cargar el tema al iniciar la página
loadTheme();
</script>
</body>
</html>