pushing new data

This commit is contained in:
2024-04-10 22:30:17 +01:00
parent 2d08313b05
commit a59843534b
4 changed files with 27 additions and 17 deletions

View File

@@ -1,6 +1,14 @@
import {WorkExperienceArgs} from "@/src/portfolio/helpers/WorkExperience";
const workExperienceData : WorkExperienceArgs[] = [
{
industry: "Artificial Intelligence",
title: "Programming Data Annotator",
company: "DataAnnotations",
city: "New York",
country: "USA",
startDate: "January 2024"
},
{
industry: "Software",
title: "Software Developer Intern",
@@ -16,6 +24,7 @@ const workExperienceData : WorkExperienceArgs[] = [
city: "London",
country: "United Kingdom",
startDate: "September 2021",
endDate: "April 2024"
},
{
industry: "Education",
@@ -60,6 +69,7 @@ const workExperienceData : WorkExperienceArgs[] = [
city: "London",
country: "United Kingdom",
startDate: "December 2021",
endDate: "January 2024"
},
{
industry: "Hospitality",
@@ -83,14 +93,15 @@ const workExperienceData : WorkExperienceArgs[] = [
// todo update
export const workExperienceParagraph =
"My work experience started when I was 16 years old, starting with hospitality and retail-based " +
"positions. Although they are not the most relevant to my career path, I still believe there I had " +
"learned plenty from them in regards to depending on each other, reliability and teamwork. Since last " +
"year I have been moving more toward the education industry. I have experience working as a tutor in " +
"a significant number of companies. Furthermore, for 2 years I had worked as a Laboratory Demonstrator for Queen " +
"Mary University of London. This position involves assisting, teaching and marking students, which is " +
"a great opportunity to broaden my IT knowledge and improve my interpersonal skills. This year during the " +
"summer I am working as a Software Developer intern at Softwire which will allow me to develop my team" +
"-work and IT skills.";
"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. Most recently, I have " +
"been contributing to the Artificial Intelligence industry as a Programming Data Annotator at DataAnnotations. " +
"Throughout these diverse experiences, I have developed a strong work ethic and a wide range of transferable " +
"skills.";
export default workExperienceData;