-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
371 lines (354 loc) · 13.8 KB
/
index.html
File metadata and controls
371 lines (354 loc) · 13.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Portfolio of a Software Engineer specialized in Linux and Open Source"
/>
<title>Take a Chance on Me</title>
<script src="https://cdn.tailwindcss.com"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link rel="stylesheet" href="Css/styles.css" />
<link rel="icon" href="/Assets/icon.png" type="image/x-icon" />
</head>
<body class="bg-black-50 text-gray-900">
<nav class="fixed top-0 w-full bg-black shadow-md z-50" id="navbar">
<div
class="container mx-auto px-6 py-4 flex justify-between items-center"
>
<a href="#" class="text-2xl font-bold text-purple-900">Portfolio</a>
<div class="hidden md:flex space-x-6">
<a href="#hero" class="nav-link">Home</a>
<a href="#about" class="nav-link">About Me</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
<button id="mobile-menu-btn" class="md:hidden text-gray-700">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<div id="mobile-menu" class="hidden md:hidden bg-white border-t">
<a href="#hero" class="block px-6 py-3 hover:bg-gray-100">Home</a>
<a href="#about" class="block px-6 py-3 hover:bg-gray-100">About Me</a>
<a href="#projects" class="block px-6 py-3 hover:bg-gray-100"
>Projects</a
>
<a href="#contact" class="block px-6 py-3 hover:bg-gray-100">Contact</a>
</div>
</nav>
<section
id="hero"
class="min-h-screen flex items-center justify-center bg-gradient-to-br from-blue-600 via-blue-700 to-indigo-800 text-white pt-20"
>
<div class="container mx-auto px-6 text-center">
<div class="hero-content">
<h1 class="text-5xl md:text-7xl font-bold mb-6 opacity-0 slide-up">
Anahi Amapola Cancino Santelices Software Developer
</h1>
<div
class="text-2xl md:text-3xl mb-8 opacity-0 slide-up"
style="animation-delay: 0.2s"
>
<span class="inline-block mx-2">Linux Enthusiast</span>
<span class="text-blue-300">|</span>
<span class="inline-block mx-2">Open Source Enthusiast</span>
</div>
<p
class="text-xl md:text-2xl mb-12 opacity-0 slide-up max-w-3xl mx-auto"
style="animation-delay: 0.4s"
></p>
<div
class="flex justify-center space-x-4 opacity-0 slide-up"
style="animation-delay: 0.6s"
>
<a
href="#projects"
class="bg-white text-blue-600 px-8 py-3 rounded-lg font-semibold hover:bg-gray-100 transition duration-300"
>
View Projects
</a>
<a
href="#contact"
class="border-2 border-white px-8 py-3 rounded-lg font-semibold hover:bg-white hover:text-blue-600 transition duration-300"
>
Contact
</a>
</div>
</div>
</div>
</section>
<section id="about" class="py-20 bg-black/90 text-purple-900">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold text-center mb-12">About Me</h2>
<div class="max-w-4xl mx-auto">
<div class="grid md:grid-cols-2 gap-8">
<div class="bg-gray-50 p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<i
class="fas fa-graduation-cap text-3xl mr-4 text-purple-900"
></i>
<h3 class="text-2xl font-semibold text-purple-900">
Education
</h3>
</div>
<p class="text-gray-700">
Technician in Computer Science and Informatics with a solid
foundation in system fundamentals and software architecture.
</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<i class="fab fa-linux text-3xl mr-4 text-purple-900"></i>
<h3 class="text-2xl font-semibold text-purple-900">
Linux Experience
</h3>
</div>
<p class="text-gray-700">
2 years working intensively with Linux systems, automation, and
server administration.
</p>
</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-md md:col-span-2">
<div class="flex items-center mb-4">
<i
class="fas fa-network-wired text-3xl mr-4 text-purple-900"
></i>
<h3 class="text-2xl font-semibold text-purple-900">
Technical Interests
</h3>
</div>
<p class="text-gray-700 mb-4">
Passionate about distributed systems, scalable architectures,
and observability. Experience with monitoring tools, CI/CD,
DevOps, and FOSS.
</p>
<div class="flex flex-wrap gap-2">
<span
class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm"
>Jenkins</span
>
<span
class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm"
>Grafana</span
>
<span
class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm"
>Prometheus</span
>
<span
class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm"
>Linux</span
>
<span
class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm"
>Docker</span
>
<span
class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm"
>Open Source</span
>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="py-20 bg-gray-200">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold text-center mb-12 text-purple-900">
Featured Project
</h2>
<div class="max-w-6xl mx-auto">
<div class="bg-white rounded-lg shadow-xl overflow-hidden">
<div class="p-8">
<div class="flex items-center justify-between mb-6">
<h3 class="text-3xl font-bold text-purple-900">
CI/CD Monitoring System
</h3>
<a
href="https://github.com/4m4p0l4x/stage-project"
target="_blank"
class="bg-gray-900 text-white px-6 py-2 rounded-lg hover:bg-gray-800 transition duration-300 flex items-center"
>
<i class="fab fa-github mr-2"></i>
GitHub Repo
</a>
</div>
<p class="text-gray-700 mb-6 text-lg">
Complete CI/CD pipeline implementation with Jenkins, integrated
with an observability stack using Grafana and Prometheus for
real-time monitoring of metrics and logs, utilizing CASA
software and its pipeline in version 6.6 in both cases.
</p>
<div class="mb-6">
<h4 class="text-xl font-semibold mb-3 text-purple-900">
Technologies Used:
</h4>
<div class="flex flex-wrap gap-2">
<span
class="bg-red-100 text-red-800 px-4 py-2 rounded-lg font-medium"
>Jenkins</span
>
<span
class="bg-orange-100 text-orange-800 px-4 py-2 rounded-lg font-medium"
>Grafana</span
>
<span
class="bg-yellow-100 text-yellow-800 px-4 py-2 rounded-lg font-medium"
>Prometheus</span
>
<span
class="bg-blue-100 text-blue-800 px-4 py-2 rounded-lg font-medium"
>Docker</span
>
<span
class="bg-green-100 text-green-800 px-4 py-2 rounded-lg font-medium"
>Linux (ArchLinux, btw)</span
>
</div>
</div>
<div class="grid md:grid-cols-2 gap-4">
<!-- Dashboard 1 -->
<div
class="dashboard-item bg-gray-100 rounded-lg overflow-hidden shadow-md"
>
<div class="aspect-video">
<video controls class="w-full h-full object-cover">
<source
src="Assets/Show Case sin CASA.webm"
type="video/webm"
/>
</video>
</div>
<div class="p-4 bg-white">
<h5 class="font-semibold text-purple-900">
Demo Node Exporter
</h5>
<p class="text-sm text-gray-600">
Monitoreo básico del sistema
</p>
</div>
</div>
<!-- Dashboard 2 -->
<div
class="dashboard-item bg-gray-100 rounded-lg overflow-hidden shadow-md"
>
<div class="aspect-video">
<video controls class="w-full h-full object-cover">
<source
src="Assets/Demo con todo.webm"
type="video/webm"
/>
</video>
</div>
<div class="p-4 bg-white">
<h5 class="font-semibold text-purple-900">
Running full (local) CASA Pipeline
</h5>
<p class="text-sm text-gray-600">
Jenkins + Grafana + Prometheus
</p>
</div>
</div>
<!-- Screenshots -->
<div
class="dashboard-item bg-gray-100 rounded-lg overflow-hidden shadow-md"
>
<div class="aspect-video">
<img
src="Assets/metricasGrafana.png"
alt="Grafana"
class="w-full h-full object-cover"
/>
</div>
<div class="p-4 bg-white">
<h5 class="font-semibold text-purple-900">
Grafana Dashboard
</h5>
<p class="text-sm text-gray-600">Reat time metrics</p>
</div>
</div>
<div
class="dashboard-item bg-gray-100 rounded-lg overflow-hidden shadow-md"
>
<div class="aspect-video">
<img
src="Assets/pipeline.png"
alt="Jenkins"
class="w-full h-full object-cover"
/>
</div>
<div class="p-4 bg-white">
<h5 class="font-semibold text-purple-900">
Jenkins Pipeline
</h5>
<p class="text-sm text-gray-600">Automated CI/CD</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="py-20 bg-indigo-950 text-white">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold text-center mb-12">Contact</h2>
<div class="max-w-2xl mx-auto text-center">
<div class="flex flex-wrap justify-center gap-6">
<a
href="https://github.com/4m4p0l4x"
target="_blank"
class="contact-link bg-gray-900 text-white"
>
<i class="fab fa-github text-2xl"></i>
<span>GitHub</span>
</a>
<a
href="https://linkedin.com/"
target="_blank"
class="contact-link bg-blue-600 text-white"
>
<i class="fab fa-linkedin text-2xl"></i>
<span>LinkedIn</span>
</a>
<a
href="mailto:a.cancino1996gmail.com"
class="contact-link bg-red-500 text-white"
>
<i class="fas fa-envelope text-2xl"></i>
<span>Email</span>
</a>
</div>
</div>
</div>
</section>
<footer class="bg-gray-900 text-white py-8">
<div class="container mx-auto px-6 text-center">
<p>
© 2025 Portfolio. Built with HTML, Tailwind CSS, and JavaScript.
</p>
<p class="text-gray-400 mt-2">Deployed on GitHub Pages</p>
</div>
</footer>
<!--adding modal stuffs/media related-->
<!--TO DO: Re factor this whole stuff, to messy-->
<div
id="video-modal"
class="hidden fixed inset-0 bg-black bg-opacity-80 flex items-center justify-center z-50"
>
<video
id="video-modal-player"
class="w-11/12 max-w-4xl rounded shadow-lg"
controls
autoplay
></video>
</div>
<script src="/Scripts/scripts.js"></script>
</body>
</html>