-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
319 lines (319 loc) · 12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mayur Shivakumar | Full-Stack Software Engineer</title>
<link rel="icon" type="image/png" href="./assets/grizzly.png"/>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="mediaqueries.css" />
</head>
<body>
<nav id="desktop-nav">
<div class="logo">Mayur Shivakumar</div>
<div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projectsOne">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<nav id="hamburger-nav">
<div class="logo">Mayur Shivakumar</div>
<div class="hamburger-menu">
<div class="hamburger-icon" onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
<div class="menu-links">
<li><a href="#about" onclick="toggleMenu()">About</a></li>
<li><a href="#experience" onclick="toggleMenu()">Experience</a></li>
<li><a href="#projectsOne" onclick="toggleMenu()">Projects</a></li>
<li><a href="#contact" onclick="toggleMenu()">Contact</a></li>
</div>
</div>
</nav>
<section id="profile">
<div class="section__pic-container">
<img src="./assets/profile-pic.png" alt="Mayur Shivakumar profile picture" />
</div>
<div class="section__text">
<p class="section__text__p1">Hello, I'm</p>
<h1 class="title">Mayur Shivakumar</h1>
<p class="section__text__p2">Full-Stack Software Developer <br>Innovating Across Layers</p>
<div class="btn-container">
<button
class="btn btn-color-2"
onclick="window.open('./assets/Mayur_Shivakumar_Resume.pdf')"
>
Download CV
</button>
<button class="btn btn-color-1" onclick="location.href='./#contact'">
Contact Info
</button>
</div>
<div id="socials-container">
<img
src="./assets/linkedin.png"
alt="My LinkedIn profile"
class="icon"
onclick="window.open('https://www.linkedin.com/in/mayurshivakumar/', '_blank')"
/>
<img
src="./assets/github.png"
alt="My Github profile"
class="icon"
onclick="window.open('https://github.com/TheBear1616', '_blank')"
/>
</div>
</div>
</section>
<section id="about">
<p class="section__text__p1">Get To Know More</p>
<h1 class="title">About Me</h1>
<div class="section-container">
<div class="section__pic-container">
<img
src="./assets/about-pic.png"
alt="Profile picture"
class="about-pic"
/>
</div>
<div class="about-details-container">
<div class="about-containers">
<div class="details-container">
<img
src="./assets/experience.png"
alt="Experience icon"
class="icon"
/>
<h3>Experience</h3>
<p>2+ years <br />Full-Stack Development</p>
</div>
<div class="details-container">
<img
src="./assets/education.png"
alt="Education icon"
class="icon"
/>
<h3>Education</h3>
<p>M.Sc. Computer Science<br />B.Engg. Computer Science</p>
</div>
</div>
<div class="text-container">
<p>
Hello, I'm <strong>Mayur Shivakumar</strong>, a zealous software engineer deeply passionate about Full Stack Development, Cloud Computing, and Machine Learning.
My career journey has been filled with diverse experiences, leading me to various roles, primarily at <a href="https://www.epicor.com/en-us/" target="_blank" style="color: #025064;"><strong>Epicor</strong></a>. Throughout this journey, I've had the privilege of playing a pivotal role in overseeing the complete software lifecycle.
By channeling my expertise in transforming innovative ideas into efficient code, conducting rigorous testing, seamlessly deploying on the cloud, and adeptly managing DevOps operations, I strive to create robust software solutions that inspire confidence and drive progress.
I firmly believe in the power of problem-solving, innovation, and technology to make a meaningful impact.
</p>
</div>
</div>
</div>
<img
src="./assets/arrow.png"
alt="Arrow icon"
class="icon arrow"
onclick="location.href='./#experience'"
/>
</section>
<section id="experience">
<p class="section__text__p1">Explore My</p>
<h1 class="title">Experience</h1>
<div class="experience-details-container">
<div class="about-containers">
<div class="details-container">
<div class="article-container">
<article>
<img
src="./assets/checkmark.png"
alt="Experience icon"
class="icon"
/>
<div>
<h3>Full Stack Software Engineer</h3>
<h4>California Polytechnic State University, San Luis Obispo | California, USA</h4>
<p>Jan 2023 - Aug 2024</p>
</div>
</article>
<article>
<img
src="./assets/checkmark.png"
alt="Experience icon"
class="icon"
/>
<div>
<h3>Software Engineer Intern</h3>
<h4>FEMR (Fast Electronic Medical Records) | California, USA</h4>
<p>Sep 2023 - Mar 2024</p>
</div>
</article>
<article>
<img
src="./assets/checkmark.png"
alt="Experience icon"
class="icon"
/>
<div>
<h3>Software Engineer</h3>
<h4>Epicor | Bangalore, India</h4>
<p>Jan 2020 - Aug 2022</p>
</div>
</article>
<article>
<img
src="./assets/checkmark.png"
alt="Experience icon"
class="icon"
/>
<div>
<h3>Research Intern</h3>
<h4>Reliance Jio | Bangalore, India</h4>
<p>Aug 2019 - Oct 2019</p>
</div>
</article>
</div>
</div>
</div>
</div>
<img
src="./assets/arrow.png"
alt="Arrow icon"
class="icon arrow"
onclick="location.href='./#projectsOne'"
/>
</section>
<section id="projectsOne">
<p class="section__text__p1">Browse My Recent</p>
<h1 class="title">Projects</h1>
<div class="experience-details-container">
<div class="about-containers">
<div class="details-container">
<div class="project-container">
<div class="section__pic-container">
<img
src="./assets/project-1.png"
alt="Project 1"
class="project-img"
/>
</div>
<div class="project-details-container">
<h2 class="experience-sub-title project-title">EduSelect AI</h2>
<div class="text-container">
<p>
<strong>EduSelect AI</strong> is a web-based tool dedicated to helping students at Cal Poly (California Polytechnic State University) discover their ideal college major based on their course and program preferences.
This project leverages state-of-the-art natural language processing (NLP) techniques, including BERT-based word embeddings and various classification models, to provide tailored major recommendations.
</p>
</div>
<div class="text-container">
<p>
<strong>Technologies: </strong> Jupyter Notebook, Python, TypeScript, SCSS, HTML and Flask Framework
</p>
</div>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
onclick="window.open('https://github.com/TheBear1616/EduSelect-AI', '_blank')"
>
Github
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<img
src="./assets/arrow.png"
alt="Arrow icon"
class="icon arrow"
onclick="location.href='./#projectsTwo'"
/>
</section>
<section id="projectsTwo">
<div class="experience-details-container">
<div class="about-containers">
<div class="details-container">
<div class="project-container">
<div class="section__pic-container">
<img
src="./assets/project-2.png"
alt="Project 2"
class="project-img"
/>
</div>
<div class="project-details-container">
<h2 class="experience-sub-title project-title">Food Genie</h2>
<div class="text-container">
<p>
<strong>Food Genie</strong> is a mobile application that provides recipe recommendations based on the ingredients you have.
It helps you discover new recipes and make the most out of the ingredients available in your pantry.
</p>
</div>
<div class="text-container">
<p>
<strong>Technologies: </strong> Kotlin, Android Jetpack, Firebase, Firestore, and Jetpack Compose
</p>
</div>
<div class="btn-container">
<button
class="btn btn-color-2 project-btn"
onclick="window.open('https://github.com/TheBear1616/FoodGenie-Mobile', '_blank')"
>
Github
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<img
src="./assets/arrow.png"
alt="Arrow icon"
class="icon arrow"
onclick="location.href='./#contact'"
/>
</section>
<section id="contact">
<p class="section__text__p1">Get in Touch</p>
<h1 class="title">Contact Me</h1>
<div class="contact-info-upper-container">
<div class="contact-info-container">
<img
src="./assets/email.png"
alt="Email icon"
class="icon contact-icon email-icon"
/>
<p><a href="mailto:[email protected]" target="_blank">[email protected]</a></p>
</div>
<div class="contact-info-container">
<img
src="./assets/linkedin.png"
alt="LinkedIn icon"
class="icon contact-icon"
/>
<p><a href="https://www.linkedin.com/in/mayurshivakumar/" target="_blank">LinkedIn</a></p>
</div>
</div>
</section>
<footer>
<nav>
<div class="nav-links-container">
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projectsOne">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<p>Copyright © 2023 Mayur Shivakumar. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>