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,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;