33 lines
822 B
TypeScript
33 lines
822 B
TypeScript
import { EducationArgs } from "@/src/portfolio/helpers/Education";
|
|
|
|
const educationData : EducationArgs[] = [
|
|
{
|
|
title: "Master of Science",
|
|
subtitle: "Artificial Intelligence",
|
|
institution: "University Of Edinburgh",
|
|
city: "Edinburgh",
|
|
startDate: "Sep 2023",
|
|
endDate: "Sep 2024",
|
|
notes: [
|
|
"Graduated with Distinction",
|
|
"Delivered multiple complex AI projects",
|
|
"Conducted in-depth research projects in the NLP field"
|
|
]
|
|
},
|
|
{
|
|
title: "Bachelor of Science",
|
|
subtitle: "Computer Science",
|
|
institution: "Queen Mary University of London",
|
|
city: "London",
|
|
startDate: "Sep 2020",
|
|
endDate: "Jul 2023",
|
|
notes: [
|
|
"Graduated with First Class Honours",
|
|
"Recipient of the Westfield Trust Academic Prize",
|
|
"Graduated with overall average at 90%"
|
|
]
|
|
}
|
|
];
|
|
|
|
export default educationData;
|