Files
Portfolio/src/portfolio/data/workExperienceData.ts

118 lines
3.5 KiB
TypeScript

import {WorkExperienceArgs} from "@/src/portfolio/helpers/WorkExperience";
const workExperienceData : WorkExperienceArgs[] = [
{
industry: "Software",
title: "Software Developer",
company: "Softwire",
city: "Manchester",
country: "United Kingdom",
startDate: "November 2024"
},
{
industry: "Artificial Intelligence",
title: "Programming Data Annotator",
company: "DataAnnotation Tech",
city: "New York",
country: "USA",
startDate: "January 2024"
},
{
industry: "Education",
title: "Laboratory Demonstrator",
company: "Queen Mary University",
city: "London",
country: "United Kingdom",
startDate: "September 2021",
endDate: "April 2024"
},
{
industry: "Software",
title: "Software Developer Intern",
company: "Softwire",
city: "London",
country: "United Kingdom",
startDate: "June 2023",
endDate: "August 2023"
},
{
industry: "Education",
title: "Buddy Scheme Mentor Volunteer",
company: "Queen Mary University",
city: "London",
country: "United Kingdom",
startDate: "September 2022",
endDate: "June 2023"
},
{
industry: "Education",
title: "Computer Science Teaching Intern",
company: "Sacred Heart of Mary Girls' School in Upminster",
city: "London",
country: "United Kingdom",
startDate: "June 2022",
endDate: "July 2022"
},
{
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 2021"
},
{
industry: "Hospitality",
title: "Bartender",
company: "Delaware North",
city: "London",
country: "United Kingdom",
startDate: "December 2021",
endDate: "January 2024"
},
{
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 =
"Since the age of 16, I have been actively engaged in various professional roles across multiple industries, " +
"including Artificial Intelligence, Software, Education, and Hospitality. My journey began in the hospitality " +
"sector, working as a Customer Assistant at McDonald's in Warsaw, Poland, and later at Morrisons in London, UK. " +
"I then transitioned into the education sector, serving as a Coding Tutor at Kodland, a Tutor at FireTechCamp, " +
"and a Computer Science Teaching Intern at Sacred Heart of Mary Girls' School in Upminster. I also volunteered " +
"as a Buddy Scheme Mentor at Queen Mary University, where I later took on the role of a Laboratory Demonstrator. " +
"In the software industry, I gained experience as a Software Developer Intern at Softwire. During my masters, I " +
"have been contributing to the Artificial Intelligence industry as a Programming Data Annotator at DataAnnotation " +
"Tech. Upon Graduation, I was offered to join Softwire as a Software Developer and I decided to take the offer " +
"and to work in their regional North West office in Manchester know for pushing innovation in the AI and Data " +
"Sector Throughout these diverse experiences, I have developed a strong work ethic and a wide range of " +
"transferable skills.";
export default workExperienceData;