Initial commit
This commit is contained in:
43
src/portfolio/data/educationData.ts
Normal file
43
src/portfolio/data/educationData.ts
Normal 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;
|
||||
Reference in New Issue
Block a user