diff --git a/src/data/resume.json b/src/data/resume.json index 82322d9..f8b11a6 100644 --- a/src/data/resume.json +++ b/src/data/resume.json @@ -14,9 +14,10 @@ "startDate": "Aug 2023", "endDate": "Dec 2023", "highlights": [ - "Developed a movie database application as well as an api for it", - "Pairprogrammed with another intern the whole internship", - "Full-stack development with React.js, C# and PostgreSQL" + "Developed a movie database application and API", + "Collaborated in pair programming throughout the internship", + "Contributed to a large existing codebase", + "Utilized React.js, C# and PostgreSQL for full-stack development" ] }, { @@ -27,9 +28,9 @@ "startDate": "Jun 2023", "endDate": "Aug 2023", "highlights": [ - "Developed an error reporting application for the new adoption solution for sick pay", - "Worked in a team consisting of our mentor and 2 other interns", - "Full-stack development with React.js, Kotlin and PostgreSQL" + "Developed an error reporting application for the new sick pay adoption solution", + "Collaborated within a team comprising our mentrs and two other interns", + "Engaged in full-stack development using React.js, Kotlin and PostgreSQL" ] } ], @@ -38,6 +39,7 @@ "institution": "Western University of Applied Sciences", "url": "https://www.hvl.no/", "area": "Bachelor in Information Technology", + "description": "Did an exchange semester @ UPV in Valencia, Spain during my 6th semester." , "startDate": "Aug 2021", "endDate": "present" }, @@ -66,7 +68,7 @@ "summary": "friByte is an undependent studentorganization that delivers secure and stable IT-solutions to other studentorganizations in Bergen.", "highlights": [ "Collaborated in team environments to enhance project efficiency", - "Managed and operated Linux servers in a multi-user setting", + "Managed and operated Linux servers", "Deployed Docker images and containers for application virtualization", "Utilized Git for version control and efficient code management", "Implemented and maintained Wordpress websites for clients" @@ -137,7 +139,6 @@ } ], "meta": { - "version": "v1.0.0", - "lastModified": "January 06, 2024" + "lastModified": "March 12, 2024" } - } \ No newline at end of file +} diff --git a/src/pages/cv.astro b/src/pages/cv.astro index 501a15c..092e983 100644 --- a/src/pages/cv.astro +++ b/src/pages/cv.astro @@ -42,12 +42,15 @@ import resume from '../data/resume.json';

Education

{resume.education.map((education) => ( -
-
+
+

{education.area}

{education.institution}

{education.startDate} - {education.endDate}

+ {education.description ? +
  • {education.description}
+ : null}
))}
@@ -92,4 +95,4 @@ import resume from '../data/resume.json';
- \ No newline at end of file + diff --git a/src/styles/global.css b/src/styles/global.css index 35c9677..4f2f452 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -74,13 +74,13 @@ p { .blog h3 { font-size: 20px; - margin-top: 18px; + margin-top: 8px; font-weight: 600; } .blog h4 { font-size: 18px; - margin-top: 18px; + margin-top: 8px; font-weight: 600; }