-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
345 lines (339 loc) · 19.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
<!DOCTYPE html>
<html lang="en" x-data="{ isOpenModal: false, darkMode: true }" @keydown.enter="isOpenModal = true">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kevin Statua - Portfolio</title>
<meta name="description" content="Discover Kevin Statua's professional portfolio: an experienced JavaScript developer, GoLang enthusiast, and Kubernetes lover with expertise in scalable e-commerce solutions and tech leadership. Explore career achievements, top skills, and personal passions like gaming, painting, fitness, and Dungeon Mastering. Connect for innovative solutions.">
<meta name="robots" content="index, follow">
<script src="https://cdn.tailwindcss.com"></script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#07070a',
accent: '#FF7575',
background: '#07070a',
text: '#f4f4f0'
},
}
},
};
</script>
<link href="https://fonts.googleapis.com/css2?family=Average+Sans:wght@400;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Average Sans', sans-serif;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-125710007-1"></script>
<script>
{
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-125710007-1');
}
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://www.gstatic.com">
<link rel="preconnect" href="https://play.google.com">
<link rel="preconnect" href="https://www.google-analytics.com">
<link rel="preconnect" href="https://cdn.tailwindcss.com">
<link rel="preconnect" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js">
</head>
<body
class="flex flex-col min-h-screen bg-background text-text"
:class="{'bg-background text-text': darkMode, 'bg-text text-background': !darkMode}"
>
<header class="py-6 border-b">
<div class="container relative mx-auto px-6">
<h1 class="text-4xl font-bold">Kevin Statua</h1>
<p class="text-lg mt-4 sm:mt-0">Javascript Developer - <span class="font-bold">GoLang & k8s lover</span> | Chief Operating Officer</p>
<div class="absolute top-0 right-0 mr-6">
<div
class="relative w-20 h-8 rounded-[50px] border cursor-pointer hidden lg:block"
:class="{ 'border-text': darkMode, 'border-background': !darkMode }"
@click="darkMode = !darkMode"
>
<div
class="w-6 h-6 rounded-full absolute top-[3px] left-[3px] transition ease-in-out duration-500 overflow-hidden"
:class="{ 'translate-x-[46px]': !darkMode }"
>
<span :class="{ 'hidden' : !darkMode }">
<svg class="w-6 h-6" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="gradientSun" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:yellow; stop-opacity:1" />
<stop offset="100%" style="stop-color:orange; stop-opacity:1" />
</radialGradient>
</defs>
<circle cx="12" cy="12" r="12" fill="url(#gradientSun)" />
</svg>
</span>
<span :class="{ 'hidden' : darkMode }">
<svg class="w-6 h-6" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="gradientMoon" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:white; stop-opacity:1" />
<stop offset="100%" style="stop-color:gray; stop-opacity:1" />
</radialGradient>
</defs>
<circle cx="12" cy="12" r="12" fill="url(#gradientMoon)" />
<circle cx="21" cy="12" r="12" fill="#f4f4f0" />
</svg>
</span>
</div>
</div>
<div
class="rounded-[50px]cursor-pointer block lg:hidden"
@click="darkMode = !darkMode"
>
<span :class="{ 'hidden' : !darkMode }">
<svg class="w-6 h-6" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="gradientSun2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:yellow; stop-opacity:1" />
<stop offset="100%" style="stop-color:orange; stop-opacity:1" />
</radialGradient>
</defs>
<circle cx="12" cy="12" r="12" fill="url(#gradientSun2)" />
</svg>
</span>
<span :class="{ 'hidden' : darkMode }">
<svg class="w-6 h-6" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="gradientMoon2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:white; stop-opacity:1" />
<stop offset="100%" style="stop-color:gray; stop-opacity:1" />
</radialGradient>
</defs>
<circle cx="12" cy="12" r="12" fill="url(#gradientMoon2)" />
<circle cx="21" cy="12" r="12" fill="#f4f4f0" />
</svg>
</span>
</div>
</div>
</div>
</header>
<main class="container mx-auto px-6 py-10">
<section class="mb-8">
<h2 class="text-2xl font-bold mb-4">Summary</h2>
<p>
Technology professional with nearly a decade of experience, specializing in scalable e-commerce solutions using Adobe Commerce, Vue, React, and more. Experienced in leadership roles, overseeing project delivery and fostering innovation.
</p>
</section>
<section class="mb-8">
<h2 class="text-2xl font-bold mb-4">Top Skills</h2>
<ul class="list-disc pl-6">
<li>JavaScript</li>
<li>React</li>
<li>Vite</li>
<li>Nodejs</li>
</ul>
</section>
<section class="mb-8">
<h2 class="text-2xl font-bold mb-4">Experience</h2>
<div class="grid lg:grid-cols-2 gap-4">
<div>
<h3 class="text-xl font-semibold pb-1">Tidycode</h3>
<p class="italic">Chief Operating Officer (Jan 2022 - Present)</p>
<ul class="list-disc pl-6 pb-2">
<li>Oversee operations, strategic planning, and client relationship management.</li>
<li>Streamlined workflows to improve efficiency and profitability.</li>
<li>Frontend & Devops</li>
</ul>
<p class="italic">CTO (Mar 2021 - Dec 2021)</p>
<ul class="list-disc pl-6 pb-2">
<li>Led a team to deliver advanced technology solutions.</li>
<li>Managed the implementation of over six Magento 2 projects.</li>
</ul>
</div>
<div>
<h3 class="text-xl font-semibold pb-1">Bitbull</h3>
<p class="italic">Frontend Developer / R&D (Jul 2020 - Feb 2021)</p>
<ul class="list-disc pl-6 pb-2">
<li>Worked in a collaborative, skilled team environment, pioneering the use of Hyvä Theme for Magento 2 projects.</li>
<li>Contributed to innovative frontend solutions, enhancing performance and user experience.</li>
</ul>
</div>
<div>
<h3 class="text-xl font-semibold pb-1">Alpenite</h3>
<p class="italic">Frontend Architect (Nov 2016 - Jul 2020)</p>
<ul class="list-disc pl-6 pb-2">
<li>Acted as a full-stack developer and technical leader on projects involving Magento, Salesforce Commerce Cloud, and Shopify.</li>
<li>Served as the company’s reference for Magento 2 frontend projects, delivering scalable and performant solutions.</li>
</ul>
</div>
<div>
<h3 class="text-xl font-semibold pb-1">Vaimo</h3>
<p class="italic">Frontend Developer (May 2019 - Sep 2019)</p>
<ul class="list-disc pl-6 pb-2">
<li>Led frontend development for Magento 1 and Magento 2 projects.</li>
<li>Delivered a large-scale e-commerce solution handling flight data, enabling users to purchase products and receive them before departure.</li>
</ul>
</div>
<div>
<h3 class="text-xl font-semibold pb-1">Glorioso Piave Srl</h3>
<p class="italic">Web Marketing Intern (May 2016 - Nov 2016)</p>
<ul class="list-disc pl-6 pb-2">
<li>Managed and developed the company's website, ensuring functionality and updates.</li>
<li>Oversaw Airbnb and Booking operations, optimizing online presence.</li>
</ul>
</div>
<div>
<h3 class="text-xl font-semibold pb-1">Webtechnet Srl</h3>
<p class="italic">Web Developer Intern (Dec 2015 - Nov 2016)</p>
<ul class="list-disc pl-6 pb-2">
<li>Developed and designed websites, focusing on performance and user experience.</li>
<li>Migrated clients' hosting solutions, ensuring seamless transitions and uptime.</li>
<li>Acted as a webmaster for internal CRMs used by Allianz and Generali Italy, ensuring stability and usability.</li>
</ul>
</div>
</div>
</section>
<div
x-data="slider()"
class="relative overflow-hidden w-full group mb-10 pb-6"
@keydown.arrow-right="currentIndex = (currentIndex + 1) % slides.length"
@keydown.arrow-left="currentIndex = (currentIndex - 1 + slides.length) % slides.length"
@touchstart="handleTouchStart($event)"
@touchend="handleTouchEnd($event)"
tabindex="0"
>
<div class="flex transition-transform duration-500"
:style="'transform: translateX(-' + currentIndex * 100 + '%)'">
<template x-for="(slide, index) in slides" :key="index">
<div class="w-full flex-shrink-0 py-4">
<h3 class="text-xl font-semibold" x-text="slide"></h3>
<p x-show="slide === 'Gaming'">
My journey to becoming ranked 3rd in Europe for Call of Duty during high school was a valuable learning experience. I approached gaming from a strategic perspective, studying movement mechanics, optimizing decision-making processes, and dedicating extensive time to deliberate practice. This experience taught me discipline, adaptability, and the importance of analyzing systems to gain a competitive edge—skills I apply in my professional life as well.
</p>
<p x-show="slide === 'Painting'">
Painting miniatures has helped me develop attention to detail and patience. The precision required in this creative hobby parallels my work in coding, where careful planning and execution are essential to achieving the desired outcome.
</p>
<p x-show="slide === 'Fitness and Motorbiking'">
Staying active through fitness and motorbiking is not just a pastime; it's a practice in setting and achieving goals. My gym routine, combined with my plans to include swimming and running, emphasizes perseverance and constant improvement. Motorbiking provides a different perspective on problem-solving, as it requires focus, quick reactions, and route planning—all invaluable a professional setting.
</p>
<p x-show="slide === 'Dungeon Master'">
As a Dungeon Master for Dungeons & Dragons and other tabletop RPGs, I have honed storytelling, creative thinking, and leadership skills. Managing a game involves understanding group dynamics, maintaining engagement, and adapting to unexpected situations—abilities that are highly transferable to team management and project coordination.
</p>
</div>
</template>
</div>
<div class="absolute bottom-1 left-0 right-0 flex justify-center space-x-4">
<template x-for="(slide, index) in slides" :key="index">
<button
class="w-4 h-4 rounded-full focus:outline-none focus:ring focus:ring-white"
:class="{ 'bg-accent': index === currentIndex, 'bg-gray-600': index !== currentIndex }"
@click="currentIndex = index"
@keydown.enter="currentIndex = index"
:aria-label="'Go to slide ' + (index + 1)"
></button>
</template>
</div>
</div>
<script>
function slider() {
return {
currentIndex: 0,
slides: ['Gaming', 'Painting', 'Fitness and Motorbiking', 'Dungeon Master'],
startX: 0,
endX: 0,
handleTouchStart(event) {
this.startX = event.touches[0].clientX;
},
handleTouchEnd(event) {
this.endX = event.changedTouches[0].clientX;
this.handleSwipe();
},
handleSwipe() {
const deltaX = this.endX - this.startX;
if (Math.abs(deltaX) > 50) {
if (deltaX > 0) {
this.prevSlide();
} else {
this.nextSlide();
}
}
},
nextSlide() {
this.currentIndex = (this.currentIndex + 1) % this.slides.length;
},
prevSlide() {
this.currentIndex = (this.currentIndex - 1 + this.slides.length) % this.slides.length;
}
}
}
</script>
<section class="pt-8 mb-8 text-center" @keydown.enter="isOpenModal = true">
<button
@click="isOpenModal = true, document.getElementById('modal').focus()"
class="bg-accent text-black font-bold py-2 px-6 rounded hover:bg-text"
>
Contact Me
</button>
<div
id="modal"
x-ref="modal"
:class="{ 'hidden': !isOpenModal }"
x-cloak
@click="isOpenModal = false"
@keydown.escape="isOpenModal = false"
tabindex="0"
class="fixed inset-0 bg-gray-800 bg-opacity-60 flex justify-center items-center"
>
<div
class="w-full max-w-2xl max-h-screen overflow-auto mx-4 rounded-lg shadow-lg p-6 relative"
:class="{'bg-background text-text': darkMode, 'bg-text text-background': !darkMode}"
@click.stop
@keydown.escape="isOpenModal = false"
>
<button
@click="isOpenModal = false"
@keydown.enter="isOpenModal = false"
class="absolute top-3 right-3 px-4 py-3 hover:border border-text"
aria-label="Close Modal"
>
×
</button>
<h2 class="text-2xl font-bold mb-4">Contact Me</h2>
<div class="space-y-4">
<div class="space-y-8 mt-10">
<a href="https://www.linkedin.com/in/kevin-statua" target="_blank"
class="flex justify-center hover:underline text-lg font-medium">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" data-supported-dps="24x24" fill="currentColor" class="mr-1" width="24" height="24" focusable="false">
<path d="M20.5 2h-17A1.5 1.5 0 002 3.5v17A1.5 1.5 0 003.5 22h17a1.5 1.5 0 001.5-1.5v-17A1.5 1.5 0 0020.5 2zM8 19H5v-9h3zM6.5 8.25A1.75 1.75 0 118.3 6.5a1.78 1.78 0 01-1.8 1.75zM19 19h-3v-4.74c0-1.42-.6-1.93-1.38-1.93A1.74 1.74 0 0013 14.19a.66.66 0 000 .14V19h-3v-9h2.9v1.3a3.11 3.11 0 012.7-1.4c1.55 0 3.36.86 3.36 3.66z"></path>
</svg>
<span class="leading-[25px]">LinkedIn Profile</span>
</a>
<hr/>
<a class="flex lg:hidden justify-center hover:underline text-lg font-medium" href="https://forms.gle/2SV2QDBxJ8CsTWrg9">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="currentColor" class="mr-1" height="24px" width="24px" version="1.1" viewBox="0 0 210 210" xml:space="preserve">
<path d="M0,105C0,47.103,47.103,0,105,0c23.383,0,45.515,7.523,64.004,21.756l-24.4,31.696C133.172,44.652,119.477,40,105,40 c-35.841,0-65,29.159-65,65s29.159,65,65,65c28.867,0,53.398-18.913,61.852-45H105V85h105v20c0,57.897-47.103,105-105,105 S0,162.897,0,105z"/>
</svg>
<span class="leading-[25px]">Contact Form</span>
</a>
<iframe
class="hidden lg:block"
src="https://docs.google.com/forms/d/e/1FAIpQLSd2Y417eodc5nEigXHks9XpqvGYJrKC82H-Oys1Q2rCW3mzRA/viewform?embedded=true"
width="100%"
height="800"
frameborder="0">
Loading…
</iframe>
</div>
</div>
</div>
</section>
</main>
<footer class="py-4 mt-auto border-t">
<div class="container mx-auto px-6 text-center">
<p>© <span x-text="new Date().getFullYear()"></span> Kevin Statua. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>