diff --git a/data/cv.json b/data/cv.json
index 7fbefdb..f9291ec 100644
--- a/data/cv.json
+++ b/data/cv.json
@@ -45,12 +45,19 @@
"skills": ["Mathematics", "Neuroscience", "Computer science"]
},
{
- "title": "VWO (NT&G)",
+ "title": "Highschool VWO (NT&G)",
"timeFrame": "2016 - 2022",
"institution": "RSG Pantarijn MHV Wageningen",
"location": "Wageningen, Netherlands",
"skills": ["Biology", "Physics", "Mathematics"]
}
],
- "experience": []
+ "experience": [
+ {
+ "title": "Albert Heijn",
+ "timeFrame": "2020 - 2023",
+ "role": "Store employee",
+ "description": ""
+ }
+ ]
}
diff --git a/src/app/cv/Cv.tsx b/src/app/cv/Cv.tsx
index 4e03ff7..b2b4cc1 100644
--- a/src/app/cv/Cv.tsx
+++ b/src/app/cv/Cv.tsx
@@ -14,6 +14,7 @@ import { Fragment } from "react";
import CvProps, {
Education as EducationProps,
+ Experience as ExperienceProps,
Skill as SkillProps
} from "@models/cv";
@@ -69,22 +70,49 @@ const Education: Component<{ education: EducationProps }> = ({ education }) => {
);
};
+const Experience: Component<{ experience: ExperienceProps }> = ({
+ experience
+}) => {
+ return (
+
+ {experience.role} at{" "}
+ {experience.title}
+
+
+ {experience.timeFrame}
+
+