-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
498 lines (465 loc) · 25.8 KB
/
index.html
File metadata and controls
498 lines (465 loc) · 25.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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Monica Faria Caires</title>
<link rel="icon" type="image/x-icon" href="/public/assets/profile-pic.png">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css" integrity="sha512-2SwdPD6INVrV/lHTZbO2nodKhrnDdJK9/kg2XD1r9uGqPo1cUbujc+IYdlYdEErWNu69gVcYgdxlmVmzTWnetw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Devicon -->
<link rel="stylesheet" type='text/css' href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css" />
<!-- CSS -->
<link rel="stylesheet" href="/src/style.css">
</head>
<body class="w-full min-h-screen flex flex-col items-center">
<div class="w-full max-w-2xl min-h-screen flex flex-col items-start gap-10 py-10 px-6 md:px-8 mt-16 md:mt-20">
<!-- Header Section -->
<header class="w-full max-w-lg flex flex-col items-start gap-12 md:gap-10">
<!-- Header Logo Section -->
<div id="headerLogoSection" class="w-full flex items-start gap-4">
<div id="headerLogoContainer">
<img src="./public/assets/profile-pic.png" alt="Monica Caires profile picture" class="profile-picture" />
</div>
</div>
<!-- Header Text Section -->
<div id="headerTextSection" class="w-full flex flex-col items-start">
<div id="headerTextContainer" class="w-full flex flex-col items-start gap-3">
<h1 class="text-2xl font-medium">Hey, I'm <span id="nameHero" class="highlight">Monica Caires</span>.</h1>
<p class="text-xl font-normal text-zinc-600">
<span class="highlight">Full-Stack Developer</span>, turning complex ideas into sleek, user-friendly experiences — think of me as a digital <span id="marie-kondo" class="highlight">Marie Kondo</span>, but with code.
</p>
</div>
<div id="headerSocialLinksContainer" class="flex items-center mt-4 mb-3 text-2xl gap-5">
<!-- LinkedIn -->
<a href="https://www.linkedin.com/in/monicafariacaires/" class="social-link" data-social="LinkedIn" target="_blank">
<i class="fa-brands fa-linkedin text-zinc-500 hover:text-black transition-colors"></i>
</a>
<!-- GitHub -->
<a href="https://github.com/monicacoding" class="social-link" data-social="GitHub" target="_blank">
<i class="fa-brands fa-github text-zinc-500 hover:text-black transition-colors"></i>
</a>
<!-- Medium -->
<a href="https://monicacoding.medium.com/" class="social-link" data-social="Medium" target="_blank">
<i class="fa-brands fa-medium text-zinc-500 hover:text-black transition-colors"></i>
</a>
<!-- Email -->
<a href="mailto:hello@monicacoding.dev" class="social-link" data-social="Email" target="_blank">
<i class="fa-solid fa-paper-plane text-xl text-zinc-500 hover:text-black transition-colors"></i>
</a>
<!-- Resume -->
<a href="./public/assets/resume.pdf" class="social-link" data-social="Resume" target="_blank">
<i class="fa-solid fa-download text-zinc-500 hover:text-black transition-colors"></i>
</a>
</div>
</div>
</header>
<!-- Main Section -->
<main class="w-full max-w-[700px] flex flex-col items-center gap-8">
<!-- Main Nav Section -->
<div class="nav-bar-row w-full flex items-center justify-between gap-3">
<div class="nav-wrapper flex-1">
<button id="navToggle" class="nav-toggle md:hidden" aria-label="Toggle navigation menu">
<span id="navToggleLabel">About</span>
<i class="fa-solid fa-chevron-down"></i>
</button>
<nav class="w-full flex items-center gap-2">
<a href="#about" class="nav-link">About</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#experience" class="nav-link">Experience</a>
<a href="#education" class="nav-link">Education</a>
<a href="#contact" class="nav-link">Git In Touch</a>
</nav>
</div>
<div class="theme-selector-container">
<button id="themeToggle" class="theme-toggle-btn" aria-label="Toggle theme menu">
<i class="fa-solid fa-moon"></i>
</button>
<div id="themeMenu" class="theme-menu hidden">
<button class="theme-option" data-theme="light">
<i class="fa-solid fa-sun"></i>
<span>Light Mode</span>
</button>
<button class="theme-option" data-theme="dark">
<i class="fa-solid fa-moon"></i>
<span>Dark Mode</span>
</button>
<button class="theme-option" data-theme="night-owl">
<i class="fa-solid fa-cloud-moon"></i>
<span>Night Owl</span>
</button>
<button class="theme-option" data-theme="high-contrast">
<i class="fa-solid fa-circle-half-stroke"></i>
<span>High Contrast</span>
</button>
</div>
</div>
</div>
<!-- Main Content Section -->
<div id="app" class="w-full flex flex-col items-start gap-8">
<!-- About Section -->
<section id="about" class="content-section w-full">
<div class="flex flex-col gap-6">
<p class="text-base leading-relaxed">
I craft responsive, user-focused web apps using <span class="highlight">JavaScript</span>, <span class="highlight">React</span>, <span class="highlight">Next.js</span>, <span class="highlight">Node.js</span>, <span class="highlight">Express</span>, and <span class="highlight">TailwindCSS</span>, always aiming for clean architecture, accessibility, and smooth user experiences.
</p>
<p class="text-base leading-relaxed">
Off the clock, I'm either running trails, reading, playing tennis, or trying to code while my pets provide "unexpected input" on my projects.
</p>
<!-- Tech Stack Section -->
<div class="mt-4">
<h2 class="text-lg font-semibold mb-4">Tech Stack</h2>
<div class="tech-stack-container">
<div class="tech-stack-scroll">
<div class="tech-item" data-tech="html">
<i class="fab fa-html5"></i>
<span>HTML</span>
</div>
<div class="tech-item" data-tech="css">
<i class="fab fa-css3-alt"></i>
<span>CSS</span>
</div>
<div class="tech-item" data-tech="javascript">
<i class="fab fa-js-square"></i>
<span>JavaScript</span>
</div>
<div class="tech-item" data-tech="react">
<i class="fab fa-react"></i>
<span>React</span>
</div>
<div class="tech-item" data-tech="nextjs">
<i class="devicon-nextjs-plain"></i>
<span>Next.js</span>
</div>
<div class="tech-item" data-tech="nodejs">
<i class="devicon-nodejs-plain"></i>
<span>Node.js</span>
</div>
<div class="tech-item" data-tech="express">
<i class="devicon-express-original"></i>
<span>Express</span>
</div>
<div class="tech-item" data-tech="tailwind">
<i class="devicon-tailwindcss-original"></i>
<span>TailwindCSS</span>
</div>
<div class="tech-item" data-tech="git">
<i class="fab fa-git-alt"></i>
<span>Git / GitHub</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="content-section hidden w-full">
<div class="flex flex-col gap-6">
<!-- Project Card 1 -->
<div class="project-card">
<div class="project-image">
<img src="./public/assets/projects/git-peek.png" alt="GitPeek project screenshot" />
</div>
<div class="project-content">
<div class="project-header">
<h3 class="project-title">GitPeek</h3>
<div class="project-links">
<a href="https://github.com/monicacoding/git-peek" target="_blank" aria-label="View GitHub repository">
<i class="fab fa-github"></i>
</a>
<a href="https://git-peek-monicacoding.vercel.app/" target="_blank" aria-label="View live demo">
<i class="fa-solid fa-globe"></i>
</a>
</div>
</div>
<div class="project-tags">
<span class="project-tag">HTML</span>
<span class="project-tag">CSS</span>
<span class="project-tag">JavaScript</span>
<span class="project-tag">GitHub API</span>
</div>
<p class="project-description">
Web application for quickly visualizing GitHub user profiles and repositories.
</p>
</div>
</div>
<!-- Project Card 2 -->
<div class="project-card">
<div class="project-image">
<img src="./public/assets/projects/text-to-speech.png" alt="Text to Speech project screenshot" />
</div>
<div class="project-content">
<div class="project-header">
<h3 class="project-title">Text to Speech</h3>
<div class="project-links">
<a href="https://github.com/monicacoding/text-to-speech" target="_blank" aria-label="View GitHub repository">
<i class="fab fa-github"></i>
</a>
<a href="https://text-to-speech-monicacoding.vercel.app/" target="_blank" aria-label="View live demo">
<i class="fa-solid fa-globe"></i>
</a>
</div>
</div>
<div class="project-tags">
<span class="project-tag">HTML</span>
<span class="project-tag">CSS</span>
<span class="project-tag">JavaScript</span>
<span class="project-tag">Speech Synthesis API</span>
</div>
<p class="project-description">
Converts user-inputted text into spoken words using the browser's built-in Speech Synthesis API.
</p>
</div>
</div>
</div>
</section>
<section id="experience" class="content-section hidden w-full">
<div class="flex flex-col gap-6">
<!-- Experience Resume Button -->
<div class="experience-section-actions">
<a href="./public/assets/resume.pdf" target="_blank" class="experience-section-resume" aria-label="Download resume (PDF)">
<i class="fa-solid fa-download"></i>
<span>Resume</span>
</a>
</div>
<!-- Experience Item 1 -->
<div class="experience-item">
<div class="experience-header">
<div class="experience-title-section">
<h3 class="experience-title">Project Management Office Analyst</h3>
<p class="experience-company">Teleperformance Portugal SA</p>
</div>
<div class="experience-meta">
<p class="experience-date">January 2025 — Present</p>
<p class="experience-location">Lisbon, Portugal</p>
</div>
</div>
<p class="experience-description">
Part of Microsoft's Partners Process Excellence team, supporting project tracking, risk identification, and process improvements. Manage workflows, coordinate communication, and introduce efficiency initiatives. Contribute to AI-driven process automation through Copilot Studio. Produce analysis and reporting to guide data-driven decision-making and ensure successful project delivery.
</p>
<div class="experience-tags">
<span class="experience-tag">Project Management</span>
<span class="experience-tag">Operations Process Improvement</span>
<span class="experience-tag">Data Analysis</span>
<span class="experience-tag">Microsoft 365</span>
<span class="experience-tag">Microsoft Copilot Studio</span>
<span class="experience-tag">Reporting</span>
<span class="experience-tag">Stakeholder Engagement</span>
</div>
</div>
<!-- Experience Item 2 -->
<div class="experience-item">
<div class="experience-header">
<div class="experience-title-section">
<h3 class="experience-title">Operational Trainer</h3>
<p class="experience-company">Teleperformance Portugal SA</p>
</div>
<div class="experience-meta">
<p class="experience-date">May 2021 — January 2025</p>
<p class="experience-location">Lisbon, Portugal</p>
</div>
</div>
<p class="experience-description">
Deliver training and create learning materials for Microsoft's Partners training department. Leverage SAP SuccessFactors, Microsoft Excel, and Power BI to track and report performance data. Support team operations and serve as backup Training Manager, collaborating closely with leadership and high-level stakeholders.
</p>
<div class="experience-tags">
<span class="experience-tag">Training Delivery</span>
<span class="experience-tag">Team Management</span>
<span class="experience-tag">Microsoft 365</span>
<span class="experience-tag">Microsoft Power BI</span>
<span class="experience-tag">SAP SuccessFactors</span>
</div>
</div>
<!-- Experience Item 3 -->
<div class="experience-item">
<div class="experience-header">
<div class="experience-title-section">
<h3 class="experience-title">Operations Customer Expert</h3>
<p class="experience-company">Teleperformance Portugal SA</p>
</div>
<div class="experience-meta">
<p class="experience-date">July 2019 — May 2021</p>
<p class="experience-location">Lisbon, Portugal</p>
</div>
</div>
<p class="experience-description">
Provide high-quality customer support, resolving issues, maintaining client satisfaction, and assisting with service-related processes. Support project management tasks and help maintain team efficiency and morale.
</p>
<div class="experience-tags">
<span class="experience-tag">Customer Service</span>
<span class="experience-tag">Effective Communication</span>
<span class="experience-tag">Problem Solving</span>
<span class="experience-tag">Documentation</span>
<span class="experience-tag">Stakeholder Support</span>
</div>
</div>
</div>
</section>
<section id="education" class="content-section hidden w-full">
<div class="flex flex-col gap-6">
<!-- Course Card 1 -->
<div class="course-card">
<div class="course-logo">
<img src="./public/assets/certifications/scrimba.png" alt="Scrimba logo" />
</div>
<div class="course-content">
<div class="course-header">
<h3 class="course-title">Fullstack Developer Path</h3>
<div class="course-links">
<!--
<a href="TODO" target="_blank" aria-label="View certificate" class="course-link">
<i class="fa-solid fa-award"></i>
<div class="course-certificate-tooltip">
<img src="TODO" alt="Scrimba's Fullstack Developer Path certificate" />
</div>
-->
<a href="https://scrimba.com/fullstack-path-c0fullstack?via=u4ab32c" target="_blank" aria-label="View course website">
<i class="fa-solid fa-globe"></i>
</a>
</div>
</div>
<p class="course-provider">Scrimba</p>
<p class="course-description">
Project-based full-stack program covering modern frontend and backend development. Developed real-world applications with JavaScript, React, and Node.js while learning UI best practices, state management, and API development.
</p>
<div class="course-tags">
<span class="course-tag">HTML/CSS</span>
<span class="course-tag">JavaScript</span>
<span class="course-tag">React</span>
<span class="course-tag">Next.js</span>
<span class="course-tag">Node.js</span>
<span class="course-tag">Express</span>
<span class="course-tag">SQL</span>
<span class="course-tag">TypeScript</span>
<span class="course-tag">REST APIs</span>
<span class="course-tag">Deployment</span>
</div>
</div>
</div>
<!-- Course Card 2 -->
<div class="course-card">
<div class="course-logo">
<img src="./public/assets/certifications/harvard.png" alt="Harvard University logo" />
</div>
<div class="course-content">
<div class="course-header">
<h3 class="course-title">CS50x: Introduction to Computer Science</h3>
<div class="course-links">
<!--
<a href="TODO" target="_blank" aria-label="View certificate" class="course-link">
<i class="fa-solid fa-award"></i>
<div class="course-certificate-tooltip">
<img src="TODO" alt="Harvard's CS50x: Introduction to Computer Science certificate" />
</div>
-->
<a href="https://cs50.harvard.edu/x/" target="_blank" aria-label="View course website">
<i class="fa-solid fa-globe"></i>
</a>
</div>
</div>
<p class="course-provider">Harvard University</p>
<p class="course-description">
Harvard's rigorous introduction to computer science focused on algorithms, data structures, and core programming principles. Built multiple hands-on projects that strengthened problem-solving, computational thinking, and writing efficient code.
</p>
<div class="course-tags">
<span class="course-tag">C</span>
<span class="course-tag">Python</span>
<span class="course-tag">SQL</span>
<span class="course-tag">HTML/CSS</span>
<span class="course-tag">JavaScript</span>
<span class="course-tag">Data Structures</span>
<span class="course-tag">Algorithms</span>
<span class="course-tag">Git</span>
<span class="course-tag">Command Line</span>
</div>
</div>
</div>
<!-- Course Card 3 -->
<div class="course-card">
<div class="course-logo">
<img src="./public/assets/certifications/ztm.png" alt="ZTM logo" />
</div>
<div class="course-content">
<div class="course-header">
<h3 class="course-title">The Complete Web Developer in 2025</h3>
<div class="course-links">
<a href="./public/assets/certifications/the-complete-web-developer-zero-to-mastery.pdf" target="_blank" aria-label="View certificate" class="course-link">
<i class="fa-solid fa-award"></i>
<div class="course-certificate-tooltip">
<img src="./public/assets/certifications/the-complete-web-developer-zero-to-mastery.jpg" alt="The Complete Web Developer in 2025 certificate" />
</div>
<a href="https://zerotomastery.io/courses/coding-bootcamp/" target="_blank" aria-label="View course website">
<i class="fa-solid fa-globe"></i>
</a>
</div>
</a>
</div>
<p class="course-provider">Zero to Mastery</p>
<p class="course-description">
Full-stack bootcamp focused on building production-ready applications. Gained experience creating interactive UIs, backend logic, and database-driven features using modern web technologies and workflows.
</p>
<div class="course-tags">
<span class="course-tag">HTML/CSS</span>
<span class="course-tag">JavaScript</span>
<span class="course-tag">React</span>
<span class="course-tag">Node.js</span>
<span class="course-tag">Express</span>
<span class="course-tag">SQL/NoSQL Databases</span>
<span class="course-tag">Git/GitHub</span>
<span class="course-tag">NPM</span>
<span class="course-tag">APIs</span>
<span class="course-tag">Deployment</span>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="content-section hidden w-full">
<div class="contact-card">
<div class="contact-links">
<a href="https://www.linkedin.com/in/monicafariacaires/" target="_blank" class="contact-link">
<i class="fa-brands fa-linkedin"></i>
<span class="contact-link-label">LinkedIn</span>
<span class="contact-link-handle">@monicafariacaires</span>
</a>
<a href="https://github.com/monicacoding" target="_blank" class="contact-link">
<i class="fa-brands fa-github"></i>
<span class="contact-link-label">GitHub</span>
<span class="contact-link-handle">@monicacoding</span>
</a>
<a href="https://monicacoding.medium.com/" target="_blank" class="contact-link">
<i class="fa-brands fa-medium"></i>
<span class="contact-link-label">Medium</span>
<span class="contact-link-handle">@monicacoding</span>
</a>
<a href="https://www.instagram.com/monicacoding" target="_blank" class="contact-link">
<i class="fa-brands fa-instagram"></i>
<span class="contact-link-label">Instagram</span>
<span class="contact-link-handle">@monicacoding</span>
</a>
<a href="mailto:hello@monicacoding.dev" target="_blank" class="contact-link">
<i class="fa-solid fa-paper-plane"></i>
<span class="contact-link-label">Email</span>
<span class="contact-link-handle">hello@monicacoding.dev</span>
</a>
<!--
<a href="https://cal.com/monicacoding" target="_blank" class="contact-link">
<i class="fa-regular fa-calendar"></i>
<span class="contact-link-label">Book a Call</span>
<span class="contact-link-handle">cal.com/monicacoding</span>
</a>
-->
</div>
</div>
</section>
</div>
</main>
</div>
<!-- JavaScript -->
<script type="module" src="/src/main.js"></script>
</body>
</html>