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,36 @@
import {AwardArgs} from "@/src/portfolio/helpers/Certificate";
const certificateData : AwardArgs[] = [
{
title: "Westfield Trust Prize",
institution: "Queen Mary University of London",
city: "London",
awardDate: "July 2023",
notes: [
"Academic award for exceptional scholastic achievement"
]
},
{
title: "IELTS Academic in English",
institution: "British Consulate",
city: "Warsaw",
awardDate: "July 2020",
notes: [
"Overall: 7.5 / 9.0, equivalent to C1",
]
},
{
title: "Project Management Fundamentals",
institution: "Project Management Institute",
city: "Warsaw",
awardDate: "April 2019",
},
{
title: "Project Management Principles",
institution: "Project Management Institute",
city: "Warsaw",
awardDate: "April 2019",
}
];
export default certificateData;

View File

@@ -0,0 +1,43 @@
import {EducationArgs} from "@/src/portfolio/helpers/Education";
const educationData : EducationArgs[] = [
{
title: "Master of Science",
subtitle: "Artificial Intelligence",
institution: "University Of Edinburgh",
city: "Edinburgh",
startDate: "September 2023",
notes: [
"Expected graduation in September 2024"
]
},
{
title: "Bachelor of Science",
subtitle: "Computer Science",
institution: "Queen Mary University of London",
city: "London",
startDate: "September 2020",
endDate: "July 2023",
notes: [
"Graduated with Honours, First Class",
"Recipient of the Westfield Trust Academic Prize",
"Graduated with overall average at 90%"
]
},
{
title: "High-school Education",
subtitle: "advanced IT, Maths and Physics",
institution: "Zamoyski High-school",
city: "Warsaw",
startDate: "September 2017",
endDate: "July 2020",
notes: [
"Final exam in Computer Science: 98% percentile",
"Final exam in Physics: 97% percentile",
"Final exam in Mathematics: 92% percentile"
],
useWith: true,
}
];
export default educationData;

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;