-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
540 lines (514 loc) · 23.9 KB
/
index.html
File metadata and controls
540 lines (514 loc) · 23.9 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
537
538
539
540
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer src="js/main.js"></script>
<link rel="stylesheet" href="css/main.css">
<title>JB Portfolio</title>
<!-- favicon -->
<link href="favicon.png" rel="icon">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
<!-- icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<link rel="stylesheet" type='text/css' href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css" />
<!-- font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;500&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light" id="navbar">
<div class="navbar-top">
<a class="nav-name" href="#">Joana Brito</a>
<button class="navbar-toggler" style="border: none" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse nav-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#experience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">CV + Contact</a>
</li>
</ul>
</div>
<!-- </div> -->
</nav>
</header>
<main>
<section class="title" id="title-section">
<div class="angle angle1"></div>
<div class="title-container">
<h1>Joana Brito</h1>
<p id="text-type"></p>
</div>
<div class="arrow"><i class="bi bi-arrow-down hero-arrow"
onclick="document.getElementById('about-title').scrollIntoView()"></i></div>
<div class="angle angle2"></div>
</section>
<section id="about">
<div class="about-title" id="about-title">
<h2>About Me</h2>
<div class="about-me">
<div class="img-wrap">
<img src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1698846713/Portfolio/IMG_0403_fdo3xm.jpg"
alt="profile picture">
<a href="#contact" class="contact-link">Say Hello!</a>
</div>
<div class="about-text">
<p>
Hi! I'm <b>Joana</b>, and I'm open to take on a Software Engineering role in a commercial setting.
I'm positive, resilient, and passionate about learning, solving problems, and tackling challenges.
</p>
<p>
In 2023, I transitioned from fashion to tech through a Software Engineering bootcamp at
<b>General Assembly</b>, where I learned to build full-stack web apps. Since then, I've been contributing
to an
<b>open-source</b> project through the <a href="https://womencodingcommunity.com/"
style="text-decoration: none;">Women Coding Community</a>,
where I now also work as an Evangelist.
</p>
<p>
My background in design brings a creative edge to my engineering work. I love creating things that inspire
and engage, and I'm eager to combine my skills in tech and fashion to make a meaningful impact!
</p>
<p>
I like keep practicing what I've learned and grow more as an engineer, so I taught myself
TypeScript, Material UI, and Jest through personal projects. I had my first hackathon with
Huddlehive,
took additional courses with <b>Code First Girls</b>, and joined the <b>Cajigo </b>100 Women in Tech
Accelerator
Programme.
</p>
<p>
"Do it scared" is my motto. I have been challenging myself, with my first <b>public speaking </b>
experience at
the Halfstack 2024 event with Women Coding Community, as well as other online events since.
</p>
</div>
</div>
</div>
<section id="skills">
<div class="sub-reversedangle">
<div class="angle angle4">
<h2>Skills</h2>
</div>
</div>
<div class="icons-container">
<div class="icon">
<i class="devicon-react-original"></i>
<span>React</span>
</div>
<div class="icon">
<i class="devicon-typescript-plain"></i>
<span>TypeScript</span>
</div>
<div class="icon">
<i class="devicon-javascript-plain"></i>
<span>JavaScript</span>
</div>
<div class="icon">
<i class="devicon-nextjs-original-wordmark"></i>
<span>Next.js</span>
</div>
<div class="icon">
<i class="devicon-jest-plain"></i>
<span>Jest</span>
</div>
<div class="icon">
<i class="devicon-html5-plain"></i>
<span>HTML5</span>
</div>
<div class="icon">
<i class="devicon-css3-plain"></i>
<span>CSS3</span>
</div>
<div class="icon">
<i class="devicon-materialui-plain"></i>
<span>MUI</span>
</div>
<div class="icon">
<i class="devicon-sass-original"></i>
<span>SASS</span>
</div>
<div class="icon">
<i class="devicon-nodejs-plain"></i>
<span>Node.js</span>
</div>
<div class="icon">
<i class="devicon-python-plain"></i>
<span>Python</span>
</div>
<div class="icon">
<i class="devicon-express-original"></i>
<span>Express.js</span>
</div>
<div class="icon">
<i class="devicon-django-plain"></i>
<span>Django</span>
</div>
<div class="icon">
<i class="devicon-postgresql-plain"></i>
<span>PostgreSQL</span>
</div>
<div class="icon">
<i class="devicon-mongodb-plain"></i>
<span>MongoDB</span>
</div>
<div class="icon">
<i class="devicon-heroku-original"></i>
<span>Heroku</span>
</div>
<div class="icon">
<i class="devicon-github-original"></i>
<span>GitHub</span>
</div>
<div class="icon">
<i class="devicon-postman-plain"></i>
<span>Postman</span>
</div>
<div class="icon">
<i class="devicon-insomnia-plain"></i>
<span>Insomnia</span>
</div>
<div class="icon">
<i class="devicon-figma-plain"></i>
<span>Figma</span>
</div>
</div>
<div class="other-skills">
<div class="soft-skills">
<h4>Soft Skills</h4>
<div class="s-skills">
<p>Problem Solving</p>
<p>Resilience</p>
<p>Communication & Collaboration</p>
<p>Adaptability</p>
<p>Attention to Detail</p>
</div>
</div>
<div class="languages">
<h4>Languages</h4>
<div class="languages-container">
<div class="language">
<p>English</p>
<p>Portuguese</p>
<p>Spanish</p>
</div>
<div class="capability">
<p>Fluent</p>
<p>Native</p>
<p>Beginner</p>
</div>
</div>
</div>
</div>
</section>
<div class="sub-angle">
<div class="angle angle3">
<h2>Projects</h2>
</div>
</div>
<section id="projects">
<div class="projects-container">
<div class="project5">
<img class="image"
src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1726683502/Portfolio/Side%20Project.png"
alt="Tube Wise">
<div class="text-wrap">
<h3>Tube Wise App</h3>
<p>Journey planner web app integrating TfL APIs for service statuses. Emphasized the importance of writing
maintainable code and thoroughly reviewing API documentation.</p>
<div class="technologies">
<div class="icons"><i class="devicon-react-original"></i><span>React</span></div>
<div class="icons"><i class="devicon-typescript-plain"></i><span>TypeScript</span></div>
<div class="icons"><i class="devicon-nextjs-original-wordmark"></i><span>Next.js</span></div>
<div class="icons"><i class="devicon-jest-plain"></i><span>Jest</span></div>
<div class="icons"><i class="devicon-materialui-plain"></i><span>Material UI</span></div>
<div class="icons"><i class="devicon-nodejs-plain"></i><span>Node.js</span></div>
<div class="icons"><i class="devicon-mongodb-plain"></i><span>MongoDB</span></div>
<div class="icons"><i class="devicon-express-original"></i><span>Express</span></div>
</div>
<div class="project-links">
<a href="https://tube-wise-client.onrender.com/" class="link-btn">Link</a>
<a href="https://github.com/joanaBrit/tube-wise" class="scroll-side">GitHub</a>
</div>
</div>
</div>
<div class="project4">
<div class="text-wrap">
<h3>Famous Wardrobe</h3>
<p>A fashion app focusing on User experience and celebrity-inspired outfits. Gained understanding of
relational databases and Python, saw the importance of having a structured plan and break down a
problem.
</p>
<div class="technologies">
<div class="icons"><i class="devicon-react-original"></i><span>React</span></div>
<div class="icons"><i class="devicon-sass-original"></i><span>SASS</span></div>
<div class="icons"><i class="devicon-bootstrap-plain"></i><span>Bootstrap</span></div>
<div class="icons"><i class="devicon-python-plain"></i><span>Python</span></div>
<div class="icons"><i class="devicon-django-plain"></i><span>Django</span></div>
<div class="icons"><i class="devicon-postgresql-plain"></i><span>PostgreSQL</span></div>
<div class="icons"><i class="devicon-heroku-original"></i><span>Heroku</span></div>
</div>
<div class="project-links">
<a href="https://famous-wardrobe-app-2f2d9032945c.herokuapp.com/" class="link-btn">Link</a>
<a href="https://github.com/joanaBrit/famous-wardrobe-app" class="scroll-side">GitHub</a>
</div>
</div>
<img class="image"
src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1698870311/Portfolio/Project_4_vh2dff.png"
alt="Famous Wardrobe">
</div>
<div class="project3">
<img class="image"
src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1698870307/Portfolio/Project_3_k5xsqt.png"
alt="SEI Quiz">
<div class="text-wrap">
<h3>SEI Quiz App</h3>
<p>Full-stack app for quiz enthusiasts covering software engineering topics.
User-centric design and team work importance.
</p>
<div class="technologies">
<div class="icons"><i class="devicon-react-original"></i><span>React</span></div>
<div class="icons"><i class="devicon-sass-original"></i><span>SASS</span></div>
<div class="icons"><i class="devicon-bootstrap-plain"></i><span>Bootstrap</span></div>
<div class="icons"><i class="devicon-nodejs-plain"></i><span>Node.js</span></div>
<div class="icons"><i class="devicon-mongodb-plain"></i><span>MongoDB</span></div>
<div class="icons"><i class="devicon-express-original"></i><span>Express</span></div>
<div class="icons"><i class="devicon-heroku-original"></i><span>Heroku</span></div>
</div>
<div class="project-links">
<a href="https://sei-quizzapp-f2eca0ac6f23.herokuapp.com/" class="link-btn">Link</a>
<a href="https://github.com/joanaBrit/sei-quizzapp/tree/main" class="scroll-side">GitHub</a>
</div>
</div>
</div>
<div class="project2">
<div class="text-wrap">
<h3>Disney Characters</h3>
<p>For users interested in learning about Disney's secondary characters. This project helped me
enhance my skills in building React applications, fetching data from APIs, and collaborating with a
team.
</p>
<div class="technologies">
<div class="icons"><i class="devicon-react-original"></i><span>React</span></div>
<div class="icons"><i class="devicon-javascript-plain"></i><span>JavaScript</span></div>
<div class="icons"><i class="devicon-css3-plain"></i><span>CSS3</span></div>
<div class="icons"><i class="devicon-sass-original"></i><span>SASS</span></div>
<div class="icons"><i class="devicon-figma-plain"></i><span>Figma</span></div>
</div>
<div class="project-links">
<a href="https://disney-characters-react.netlify.app/" class="link-btn">Link</a>
<a href="https://github.com/joanaBrit/disney-api" class="scroll-side">GitHub</a>
</div>
</div>
<img class="image"
src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1698870310/Portfolio/Project_2_r3ypix.png"
alt="Disney characters">
</div>
<div class="project1">
<img class="image"
src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1698870306/Portfolio/Project_1_zn6rq0.png"
alt="Turtle bay">
<div class="text-wrap">
<h3>Turtle Bay</h3>
<p>A retro-themed, grid-based game using JavaScript, CSS and HTML. Players guide a turtle to navigate past
obstacles and reach the deep sea.</p>
<div class="technologies">
<div class="icons"><i class="devicon-javascript-plain"></i><span>JavaScript</span></div>
<div class="icons"><i class="devicon-html5-plain"></i><span>HTML5</span></div>
<div class="icons"><i class="devicon-css3-plain"></i><span>CSS3</span></div>
</div>
<div class="project-links">
<a href="https://joanabrit.github.io/Turtle-Bay/" class="link-btn">Link</a>
<a href="https://github.com/joanaBrit/Turtle-Bay/tree/main" class="scroll-side">GitHub</a>
</div>
</div>
</div>
</div>
</section>
<section id="experience">
<div class="sub-reversedangle">
<div class="angle angle4">
<h2>Experience</h2>
</div>
</div>
<div class="experience-container">
<div class="wcc">
<img src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1698878562/Portfolio/jaeiodqcuedonsqysxa6"
alt="WCC">
<div class="exp-text text-wrap">
<h3>Open-Source Contributor - <span>Women Coding Community [ February - Present 2024 ]</span></h3>
<p>Contributing to open-source has provided me with real-world experience where I work with GitHub, create
pull requests, and review and comment on others' contributions.
It has also helped me develop the skills to break down complex issues into smaller, manageable tasks,
while considering how I would structure an issue myself. We have weekly meetings to discuss current
issues and share updates on our progress.
I also have the opportunity to introduce new team members to our workflow.</p>
<p>
Contributing to this open-source project has significantly boosted my confidence in several ways: I've
become more comfortable communicating with a team, asking questions, and taking on new challenges.
</p>
<ul>
<li> Contributed to WCC's public website as part of an active open-source
community.</li>
<li> Built front-end using React and Next.js in Typescript, as well as Material UI.</li>
<li> Implemented testing with Jest and React Testing Library.</li>
<li> Improved code standard with exposure to linting tools, code review process.</li>
<li>
Expanded understanding of CI processes, git version control system.
</li>
<li>
Collaborated with team members across the development cycle, including
early stage designs and deployment</li>
</ul>
</div>
</div>
<div class="ga">
<div class="exp-text-reverse text-wrap">
<h3>Software Engineering Immersive - <span>General Assembly [ July - October 2023 ]</span></h3>
<p>During my Software Engineering Immersive (SEI) course at GA, I began a transformative journey that
pushed me out of my comfort zone. The program was full of challenges and rewarding experiences that not
only sharpened my problem-solving skills but also taught me how to research and read documentation
effectively. I learned the importance of embracing failure as a stepping stone to growth and the
importance of asking
for help when needed. It was during this time that my passion for tech truly began. </p>
<ul>
<li> Full stack web development course, as an
intensive 12-week, 420-hour programme
Learned web fundamentals, including HTML,
CSS, and JavaScript.</li>
<li> Developed web apps with popular libraries,
including React, Sass, Bootstrap.</li>
<li> Developed back-end with Node.js and
Express, with additional exposure to Python
and Django.</li>
<li> Familiarised with NoSQL and SQL database
technologies, through MongoDB and
Postgres.</li>
<li>
Experienced development tooling through
Figma, Postman, Insomnia,
git, working collaborative in group project
</li>
</ul>
</div>
<img
src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1698878562/Portfolio/General-Assembly-logo2_lx0rpj.png"
alt="GA">
</div>
<div class="fashion-assistant">
<img
src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1698878572/Portfolio/logo-transparent_jvibsc.png"
alt="Harriet">
<div class="exp-text text-wrap">
<h3>Freelance Fashion Assistant - <span>Harriet Nicolson [June 2022 - July 2023]</span></h3>
<ul>
<li>Preparing the stylist area, taking out the garments, removing packaging and labels, steaming
garments
and
organising them in a way to be ready when needed.</li>
<li>Assist the stylist at photo shoot days by dressing and undressing the mannequins.</li>
<li>Creating social media content.</li>
<li>Collect and return garments to the respective brands.</li>
</ul>
<!-- </p> -->
</div>
</div>
<div class="visual-merchandiser">
<div class="exp-text-reverse text-wrap">
<h3>Visual Merchandiser - <span>[March 2020 - April 2022]</span></h3>
<div>
<ul>
<li>Developed weekly strategies to increase sales.</li>
<li>Created a store layout, inclusive styled mannequins.</li>
<li>Ongoing research on trends.</li>
</ul>
</div>
</div>
<img src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1698878566/Portfolio/zara-logo-0_mkyryp.png"
alt="zara">
</div>
</div>
</section>
<section id="interests">
<div class="sub-angle">
<div class="angle angle5">
<h2>Interests</h2>
</div>
</div>
<div class="interest-icons">
<span>
<div class="interest-icon-container">
<img src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1698861345/Portfolio/forest_mimozz.png"
alt="nature" />
</div>
<p>I like to walk in trails surrounded by plants and flowers, learning more about
our natural world.</p>
</span>
<span>
<div class="interest-icon-container">
<img
src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1714734355/Portfolio/exl39xcfea0zlikqrd7b.png"
alt="creativity">
</div>
<p>The creative energy elevates my mood, gives me strength, and gives me a space to
be myself.</p>
</span>
<span>
<div class="interest-icon-container">
<img src="https://res.cloudinary.com/dwgwkeccm/image/upload/v1698861316/Portfolio/watermelon_1_l3zrxw.png"
alt="fruits">
</div>
<p>True happiness! I love to grow my own vegetables, and get very excited tasting
freshly picked fruits.</p>
</span>
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<div class="contact-container">
<div class="email"><i class="bi bi-envelope"></i>
<p>joanabrito216@gmail.com</p>
</div>
<div class="cv-download">
<a href="assets/Joana Brito CV.pdf" download>
Download CV
<!-- <i class="bi bi-download"></i> -->
</a>
</div>
</div>
</section>
<div style="height: 7.5vh"></div>
</main>
<div class="full-page-overlay">
<footer>
<a href="https://www.linkedin.com/in/joana-brito216/" class="linkedin"><i class="bi bi-linkedin"></i></a>
<a href="https://github.com/joanaBrit" class="github"><i class="bi bi-github"></i></a>
<a href="mailto:joanabrito214@gmail.com" class="email"><i class="bi bi-envelope"></i></a>
<a href="assets/Joana Brito CV.pdf" class="cv"><i class="bi bi-filetype-pdf"></i></a>
</footer>
</div>
</body>
</html>