-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
536 lines (381 loc) · 19.6 KB
/
index.html
File metadata and controls
536 lines (381 loc) · 19.6 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--We hide some unwanted elements from google translate.-->
<style>
/*Hides the top bar.*/
.VIpgJd-ZVi9od-ORHb-OEVmcd {
display: none;
}
/*It hides the image of the SIMPLE layout.*/
.goog-te-gadget-simple img {
display: none !important;
}
/*These styles help to hide more elements.*/
#google_translate_element {
width: 300px;
float: right;
text-align: right;
display: block;
}
.goog-te-banner-frame.skiptranslate {
display: none !important;
}
body {
top: 0px !important;
}
#goog-gt-tt {
display: none !important;
top: 0px !important;
}
.goog-tooltip skiptranslate {
display: none !important;
top: 0px !important;
}
.activity-root {
display: hide !important;
}
.status-message {
display: hide !important;
}
.started-activity-container {
display: hide !important;
}
/*Differents styles to accommodate the language selector in the page.*/
.languageSelector .goog-te-gadget-simple {
background: #ced1d1;
/*Change the size of the selector.*/
transform: scale(0.5);
}
.goog-te-gadget-simple span {
color: #585858;
font-size: 30px;
}
/*It hides the logo that appears for a moment, on left edge of the header. */
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
display: none;
}
</style>
<!-- --------- UNICONS ---------- -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.8/css/line.css">
<!--Font Awesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- --------- CSS ---------- -->
<link rel="stylesheet" href="css/styles.css">
<!-- --------- FAVICON ---------- -->
<link rel="shortcut icon" href="img/logo.png" type="image/x-icon">
<title>Stalin Developer</title>
</head>
<body>
<div class="container">
<!-- --------------- HEADER --------------- -->
<nav id="header">
<div class="nav-logo" id="logo">
<img src="img/logo-light.png" alt="logo">
</div>
<div class="nav-menu" id="myNavMenu">
<ul class="nav_menu_list">
<li class="nav_list">
<a href="#home" class="nav-link active-link">Home</a>
<div class="circle"></div>
</li>
<li class="nav_list">
<a href="#about" class="nav-link">About</a>
<div class="circle"></div>
</li>
<li class="nav_list">
<a href="#projects" class="nav-link">Projects</a>
<div class="circle"></div>
</li>
<li class="nav_list">
<a href="#contact" class="nav-link">Contact</a>
<div class="circle"></div>
</li>
</ul>
<!--Dark Mode
<div class="switch">
<i class="fas fa-sun"></i>
<i class="fas fa-moon"></i>
</div>
-->
</div>
<!--We moved the language selector because we don't wanted it inside the nav-menu.-->
<div class="nav-button">
<!--Language selector-->
<!--We add an expansion for google translate.
We put it in this location because We wanted it in the right part of menu.-->
<span class="languageSelector" id="google_translate_element"></span>
</div>
<div class="nav-menu-btn">
<i class="uil uil-bars" onclick="myMenuFunction()"></i>
</div>
</nav>
<!-- -------------- MAIN ---------------- -->
<main class="wrapper">
<!-- -------------- FEATURED BOX ---------------- -->
<section class="featured-box" id="home">
<div class="featured-text">
<div class="featured-text-card">
<span>Stalin Chávez</span>
</div>
<div class="featured-name">
<p>I'm a <span class="typedText"></span></p>
</div>
<div class="featured-text-info">
<p>
Web Developer specialized in React, React Native, Next.js, Node.js, and Nest.js with experience building scalable web applications and REST APIs.
I integrate AI solutions using Hugging Face APIs to optimize processes and deliver innovative solutions that solve real business problems.
</p>
</div>
<div class="featured-text-btn">
<a href="#contact" class="btn blue-btn">Hire Me</a>
<!--CV buttons.-->
<a href="https://drive.google.com/file/d/1ULkor9Sxf7SJ0Xb3QC9Y_9ITrjWcH7XH/view?usp=sharing" target="_blank" class="btn">Download CV EN <i class="uil uil-file-alt"></i></a>
<a href="https://drive.google.com/file/d/1o3dIGlb9frInHZKl1GVtmeWJ_6-MGuyx/view?usp=sharing" target="_blank" class="btn">Download CV ES <i class="uil uil-file-alt"></i></a>
</div>
<div class="social_icons">
<a href="https://www.linkedin.com/in/stalin-developer" class="icon"><i
class="uil uil-linkedin-alt"></i></a>
<a href="https://github.com/Stalin-Developer" class="icon"><i
class="uil uil-github-alt"></i></a>
</div>
</div>
<div class="featured-image">
<div class="image">
<img src="img/profile1.png" alt="avatar">
</div>
</div>
<div class="scroll-icon-box">
<a href="#about" class="scroll-btn">
<i class="uil uil-mouse-alt"></i>
<p>Scroll Down</p>
</a>
</div>
</section>
<!-- -------------- ABOUT BOX ---------------- -->
<section class="section" id="about">
<div class="top-header">
<h1>About Me</h1>
</div>
<div class="row">
<div class="col">
<div class="about-info">
<p>
Hello, I'm Stalin Chávez, a JavaScript Web Developer with proven experience building scalable web solutions that drive real business results.
Over the past years, I've specialized in the modern JavaScript ecosystem, mastering React, React Native, Next.js, Node.js, and Nest.js to deliver complete full-stack applications.
My expertise goes beyond traditional web development. I've successfully integrated AI technologies using Hugging Face APIs to automate processes and eliminate manual workflows,
as demonstrated in my recent document management system that centralized scattered academic documents and automated data extraction. This project saved countless hours of manual work and improved organizational efficiency.
I bring a unique combination of technical skills and business problem-solving. Whether it's developing responsive frontends with React, building robust APIs with Node.js,
or implementing database solutions with MySQL and MongoDB, I focus on creating solutions that not only work flawlessly but also provide measurable value to businesses.
</p>
</div>
</div>
<div class="col">
<div class="skills-box">
<div class="skills-header">
<h3>Frontend</h3>
</div>
<div class="skills-list">
<span>HTML</span>
<span>CSS</span>
<span>Bootstrap</span>
<span>JavaScript</span>
<span>TypeScript</span>
<span>React</span>
<span>React Native</span>
<span>Next.js</span>
</div>
</div>
<div class="skills-box">
<div class="skills-header">
<h3>Backend</h3>
</div>
<div class="skills-list">
<span>Node.js</span>
<span>Express.js</span>
<span>NestJS</span>
<span>RESTful APIs</span>
<span>GraphQL</span>
<span>Python</span>
<span>Laravel</span>
<span>Codeigniter</span>
</div>
</div>
<div class="skills-box">
<div class="skills-header">
<h3>Database</h3>
</div>
<div class="skills-list">
<span>MySQL</span>
<span>PostgreSQL</span>
<span>MongoDB</span>
</div>
</div>
</div>
</div>
</section>
<!-- -------------- PROJECT BOX ---------------- -->
<section class="section" id="projects">
<div class="top-header">
<h1>Projects</h1>
</div>
<div class="project-container">
<!--Changing the structure of the "project-box container to adapt to our need."-->
<div class="project-box">
<div class="info-project">
<div class="projectDescription">
<h3 style="margin-bottom: -2px;">DocumentManagement</h3>
<p style="font-size: 14px;">
It is a web application where you can view the academic scientific documents generated by the institute.
It has a report generation section where you can generate reports on submitted academic projects.
The entry of metadata for academic documents is automated with the help of AI.
</p>
</div>
<img src="img/gestion-documental.png" alt="" class="image-project">
<div class="skills-list" style="padding: 0 15px;">
<span>HTML</span>
<span>CSS</span>
<span>Bootstrap</span>
<span>React</span>
<span>JavaScript</span>
<span>Node.js</span>
<span>Express.js</span>
<span>MySQL</span>
</div>
<div class="buttons">
<a href="https://github.com/Stalin-Developer/analisis.git" target="_blank"
class="btn blue-btn">GitHub</a>
<a href="https://investigacion.itsiaplicaciones.com/" target="_blank"
class="btn blue-btn">Live Demo</a>
</div>
</div>
</div>
<div class="project-box">
<div class="info-project">
<div class="projectDescription">
<h3>Pizza Web</h3>
<p>
A pizza restaurant web site where you can see the menu, change the language of the page,
see the delivery applications that work with the restaurant. See the address of the restaurant on google maps,
contact to the restaurant through a form.
</p>
</div>
<img src="img/pizza-web.png" alt="" class="image-project">
<div class="skills-list">
<span>HTML</span>
<span>CSS</span>
<span>JavaScript</span>
</div>
<div class="buttons">
<a href="https://github.com/Stalin-Developer/Pizza-Restaurant-Web.git" target="_blank"
class="btn blue-btn">GitHub</a>
<a href="https://pizza-web-restaurant.netlify.app/" target="_blank"
class="btn blue-btn">Live Demo</a>
</div>
</div>
</div>
<div class="project-box">
<div class="info-project">
<div class="projectDescription">
<h3>To Do List</h3>
<p>
A to do list application where you can create your activities, we used oop in javascript.
You can filter your activities by writing a specific word or selecting between your completed and uncompleted activities.
</p>
</div>
<img src="img/todolist.png" alt="" class="image-project">
<div class="skills-list">
<span>HTML</span>
<span>CSS</span>
<span>JavaScript</span>
<span>Bootstrap</span>
</div>
<div class="buttons">
<a href="https://github.com/Stalin-Developer/JS-To-Do-List.git" target="_blank"
class="btn blue-btn">GitHub</a>
<a href="https://js-to-do-lis.netlify.app/" target="_blank" class="btn blue-btn">Live
Demo</a>
</div>
</div>
</div>
</div>
</section>
<!-- -------------- CONTACT BOX ---------------- -->
<section class="section" id="contact">
<div class="top-header">
<h1>Get in touch</h1>
<span>Do you have a project in your mind, contact me here</span>
</div>
<div class="row">
<div class="col">
<div class="contact-info">
<h2>Find Me <i class="uil uil-corner-right-down"></i></h2>
<p><i class="uil uil-envelope"></i> Email: leonelstalin94@gmail.com</p>
</div>
</div>
<!--Form that sends the information to netlify.-->
<form name="contact" method="POST" data-netlify="true">
<div class="senderInformation">
<input type="text" name="name" placeholder="Your Name"/>
<input type="email" name="email" placeholder="Your Email"/>
</div>
<textarea name="message" placeholder="Your Message"></textarea>
<!--Recaptcha 2 to avoid spam.-->
<div data-netlify-recaptcha="true"></div>
<button type="submit" >Send <i class="uil uil-message"></i></button>
</form>
</div>
</section>
</main>
<!-- --------------- FOOTER --------------- -->
<footer>
<div class="top-footer">
<img src="img/logo-light.png" alt="logo">
</div>
<div class="middle-footer">
<ul class="footer-menu">
<li class="footer_menu_list">
<a href="#home">Home</a>
</li>
<li class="footer_menu_list">
<a href="#about">About</a>
</li>
<li class="footer_menu_list">
<a href="#projects">Projects</a>
</li>
<li class="footer_menu_list">
<a href="#contact">Contact</a>
</li>
</ul>
</div>
<div class="footer-social-icons">
<a href="https://www.linkedin.com/in/stalin-developer" class="icon"><i
class="uil uil-linkedin-alt"></i></a>
<a href="https://github.com/Stalin-Developer" class="icon"><i class="uil uil-github-alt"></i></a>
</div>
<div class="bottom-footer">
<!--The placeholder is for put the year dynamically with javascript.-->
<p>© Copyright <span id="year-placeholder"></span> <a
href="https://www.linkedin.com/in/stalin-developer" style="text-decoration: none;">Stalin
Developer.</a> All rights reserved.</p>
</div>
</footer>
</div>
<!--We are importing the google translate into our page.-->
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({ includedLanguages: 'en,es', layout: google.translate.TranslateElement.InlineLayout.SIMPLE }, 'google_translate_element');
}
</script>
<script type="text/javascript"
src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<!-- ----- TYPING JS Link ----- -->
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
<!-- ----- SCROLL REVEAL JS Link----- -->
<script src="https://unpkg.com/scrollreveal"></script>
<!-- ----- MAIN JS ----- -->
<script src="js/main.js"></script>
</body>
</html>