-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
105 lines (104 loc) · 5.62 KB
/
about.html
File metadata and controls
105 lines (104 loc) · 5.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Luis Homero</title>
<link rel="stylesheet" href="css/about.css">
</head>
<body>
<header>
<a href="javascript:history.back()" class="back-arrow">←</a>
<h1 class="logo">Luis <span>Homero</span></h1>
</header>
<main>
<section class="about">
<div class="heading">
<h2>About Me</h2>
</div>
<div class="about-content">
<p>
I'm Luis Homero, a Systems Engineering graduate from the National University of Trujillo, Peru. I've worked as a programmer in various companies and as a freelancer, covering a wide range of areas from frontend web development to working with CMS platforms like WordPress, and even developing and maintaining desktop applications with .NET Framework.
</p>
<p>
I have a deep passion for programming, computer science, and languages. Yes, I'm a language enthusiast. I'm a native Spanish speaker, fluent in advanced conversational English, and currently learning Japanese.
</p>
<p>
Below, you'll find a detailed overview of my work experience:
</p>
</div>
<div class="timeline">
<div class="timeline-item">
<div class="circle"></div>
<h4>Frontend Developer <span>Jul. 2021 - Jul. 2022</span></h4>
<h6>Janaq</h6>
<p>At Janaq, I was responsible for handling the frontend requirements of the NGR restaurant group, which includes brands like Papa John’s, Dunkin’ Donuts, Popeyes, China Wok, and Don Belisario. I utilized technologies such as Vue.js and Nuxt.js to develop and maintain the frontend interfaces of their digital platforms, ensuring a smooth and efficient user experience.</p>
</div>
<div class="timeline-item">
<div class="circle"></div>
<h4>DCMS Web Developer <span>Aug. 2022 - Dec. 2022</span></h4>
<h6>Dermalia</h6>
<p>At Dermalia, a store specializing in dermatological products, I was responsible for the complete development of their e-commerce platform. I utilized WordPress, WooCommerce, and Elementor Pro to create an efficient and visually appealing online store. Additionally, I integrated a payment gateway to facilitate transactions and developed custom PHP snippets to enhance the store's functionality.</p>
</div>
<div class="timeline-item">
<div class="circle"></div>
<h4>Software Developer Analyst <span>Feb. 2023 - Present</span></h4>
<h6>SANNA Clínica Sánchez Ferrer</h6>
<p>At SANNA, a healthcare group in Peru, I worked at Sánchez Ferrer Clinic, where I was responsible for developing and maintaining modules for the clinic's In-House systems using .NET with C# for both desktop and web applications. I also created reports using SQL with SSMS and provided technical support to users through the Help Desk, including basic support in SAP Business One.</p>
</div>
</div>
<div class="technical-skills">
<h2>Technical skills</h2>
<div class="skills">
<div class="skill">
<h4>Frontend Development</h4>
<ul>
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>Vue.js</li>
<li>Nuxt.js</li>
</ul>
</div>
<div class="skill">
<h4>Database Management</h4>
<ul>
<li>MySQL</li>
<li>SQL Server</li>
</ul>
</div>
<div class="skill">
<h4>Other Technologies</h4>
<ul>
<li>.NET Framework</li>
<li>C#</li>
<li>Git</li>
</ul>
</div>
</div>
<div class="languages">
<h2>Languages</h2>
<div class="languages-list">
<div class="language">
<h4>Spanish 🇵🇪</h4>
<p>Native</p>
</div>
<div class="language">
<h4>English 🇺🇸</h4>
<p>Advanced Conversational (B2)</p>
</div>
<div class="language">
<h4>Japanese 🇯🇵</h4>
<p>Beginner</p>
</div>
</div>
</div>
<div class="resume">
<p>
I am always open to new challenges and opportunities within the IT field. I truly enjoy working in a team environment because I believe collaboration is essential for achieving outstanding results. I'm also receptive to constructive feedback, viewing it as a valuable chance to improve and continue learning. Every day is an opportunity to grow professionally and to contribute my best to every project.
</p>
</div>
</section>
</main>
</body>
</html>