Initial commit

This commit is contained in:
2023-07-30 21:35:47 +01:00
commit 24c6dbe278
70 changed files with 6764 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
import {WorkExperienceArgs} from "@/src/portfolio/helpers/WorkExperience";
const workExperienceData : WorkExperienceArgs[] = [
{
industry: "Software",
title: "Software Developer Intern",
company: "Softwire",
city: "London",
country: "United Kingdom",
startDate: "June 2023"
},
{
industry: "Education",
title: "Laboratory Demonstrator",
company: "Queen Mary University",
city: "London",
country: "United Kingdom",
startDate: "September 2021",
endDate: "June 2023"
},
{
industry: "Education",
title: "Tutor",
company: "FireTechCamp",
city: "London",
country: "United Kingdom",
startDate: "January 2022",
endDate: "January 2023"
},
{
industry: "Education",
title: "Coding Tutor",
company: "Kodland",
city: "London",
country: "United Kingdom",
startDate: "May 2021",
endDate: "August 2023"
},
{
industry: "Hospitality",
title: "Bartender",
company: "Delaware North",
city: "London",
country: "United Kingdom",
startDate: "December 2021",
},
{
industry: "Hospitality",
title: "Customer Assistant",
company: "Morrisons",
city: "London",
country: "United Kingdom",
startDate: "September 2020",
endDate: "September 2022"
},
{
industry: "Hospitality",
title: "Customer Assistant",
company: "McDonald's",
city: "Warsaw",
country: "Poland",
startDate: "July 2018",
endDate: "August 2018"
},
];
// todo update
export const workExperienceParagraph =
"My work experience started when I was 16 years old, starting with hospitality and retail-based\n" +
"positions. Although they are not the most relevant to my career path, I still believe there I had\n" +
"learned plenty from them in regards to depending on each other, reliability and teamwork. Since last\n" +
"year I have been moving more toward the education industry. I have experience working as a tutor in\n" +
"a significant number of companies. Furthermore, I am working as a Laboratory Demonstrator for Queen\n" +
"Mary University of London. This position involves assisting, teaching and marking students, which is\n" +
"a great opportunity to broaden my IT knowledge and improve my interpersonal skills.";
export default workExperienceData;