CV/src/education/education.dataset.ts
2023-10-24 08:10:19 +02:00

50 lines
2.5 KiB
TypeScript

import { EducationType } from "@/education/education.types";
export default {
getData: (): EducationType[] =>
[
{
institute: "Hogeschool Utrecht",
city: "Utrecht",
url: "https://hu.nl",
course: "Mediatechnologie",
level: "HBO",
startDate: new Date(2010, 8),
endDate: new Date(2015, 9),
description: `My time at Hogeschool Utrecht was a period of academic and personal growth.
While pursuing my Media Technology degree, I took a gap year to co-found and serve as treasurer of Sv. Ingenium, a university-affiliated student society. This experience sharpened my organizational, communication, and leadership skills, proving invaluable throughout my studies and beyond.
Additionally, active participation in projects and presentations enhanced my presentation skills and public speaking confidence.`,
},
{
institute: "Mediacollege Amsterdam",
city: "Amsterdam",
url: "https://www.ma-web.nl/",
course: "Interactive Design & Media technology",
level: "MBO 4",
startDate: new Date(2006, 8),
endDate: new Date(2010, 5),
description: `My time at Mediacollege Amsterdam began with Interactive Design, but programming quickly captured my interest. ActionScript 2, now a relic of the past, marked my introduction to the world of programming, while PHP and JavaScript truly sparked my passion.
With help of my teachers and a careful consideration of course, I transitioned towards Media Technology, paving the way for my future in software development.`,
},
{
institute: "Clusius college",
city: "Castricum",
url: "https://www.vonknh.nl/vmbo/castricum",
course: "General secondary education",
level: "VMBO - GL",
startDate: new Date(2002, 8),
endDate: new Date(2006, 5),
description: "",
},
{
institute: "Watermolen",
city: "Koog aan de zaan",
url: "https://www.obsdewatermolen.nl/",
course: "General primary education",
level: "Primary education",
startDate: new Date(1994, 8),
endDate: new Date(2002, 5),
description: "",
},
] satisfies EducationType[],
};