-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c79c2ca
commit 2d9abc2
Showing
2 changed files
with
86 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<script> | ||
let jobs = [ | ||
{ | ||
duration: "2022 - Present", | ||
title: "Quouch - CTO & Fullstack Developer", | ||
description: "Provide leadership in technical decision making. Designed, developed, shipped and now maintain production code for our web application which is now used by 5000+ users worldwide.", | ||
skills: [ | ||
"Ruby on Rails", | ||
"HTML", | ||
"SCSS", | ||
"Stimulus", | ||
"Stripe API", | ||
"Heroku" | ||
] | ||
}, | ||
{ | ||
duration: "2021 - Present", | ||
title: "Le Wagon - Teacher", | ||
description: "Give lectures, support students in challenges, oversee and support development of final projects.", | ||
skills: [ | ||
"HTML", | ||
"CSS", | ||
"JavaScript", | ||
"SQL", | ||
"Ruby", | ||
"Ruby on Rails", | ||
"Templating" | ||
] | ||
}, | ||
{ | ||
duration: "2022 - Present", | ||
title: "Tech4Girls - Volunteer", | ||
description: "Teach coding skills to children, help forge partnerships and secure financial support, lead project kick off with a team of UX designers and web developers for a quiz app - advancing our mission to empower girls and underprivileged children in tech.", | ||
skills: [ | ||
"HTML", | ||
"CSS", | ||
"JavaScript", | ||
"Ruby on Rails" | ||
] | ||
}, | ||
{ | ||
duration: "2021 - 2022", | ||
title: "Travel Buddies GmbH - Web Developer", | ||
description: "Built and maintained critical components across the whole product portfolio. Work closely with cross-functional teams, including developers, designers, and product managers, to implement and advocate for best practices in web accessibility.", | ||
skills: [ | ||
"HTML", | ||
"SCSS", | ||
"JavaScript", | ||
"PHP", | ||
"Wordpress", | ||
"Shopify" | ||
] | ||
} | ||
]; | ||
</script> | ||
|
||
<section class="my-6" id="experience"> | ||
<h2 class="text-xl/8 font-bold">Experience</h2> | ||
<ul> | ||
{#each jobs as job, index} | ||
<li> | ||
<span>{job.duration}</span> | ||
<h3>{job.title}</h3> | ||
<p>{job.description}</p> | ||
<ul> | ||
{#each job.skills as skill, i} | ||
<li key={i}>{skill}</li> | ||
{/each} | ||
</ul> | ||
</li> | ||
{/each} | ||
</ul> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters