From decc939c99974c2fe3cb324a8b21a98b571b4d62 Mon Sep 17 00:00:00 2001 From: MrAnyx <1ptitigre@gmail.com> Date: Sat, 26 Feb 2022 23:18:36 +0100 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=92=AC=20Added=20education=20section?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/education.js | 55 +++++++++++++++++++++++++++ pages/about.vue | 94 +++++++++++++++++++++++++++++++++++++---------- 2 files changed, 130 insertions(+), 19 deletions(-) create mode 100644 data/education.js diff --git a/data/education.js b/data/education.js new file mode 100644 index 0000000..9de98af --- /dev/null +++ b/data/education.js @@ -0,0 +1,55 @@ +const educations = [ + { + school: "3iL Ingénieurs", + fields: ["Computer Science"], + city: "Limoges", + country: "France", + from: "September 2017", + to: "July 2022", + diplomas: [ + { + date: "September 2022", + name: "Engineering Degree", + info: "with high honors", + }, + { + date: "June 2021", + name: "TOEIC", + info: "with a score of 920/990", + }, + ], + }, + { + school: "Université du Québec à Chicoutimi (UQAC)", + fields: ["Computer Science", "Maths"], + city: "Chicoutimi", + country: "Québec", + from: "September 2021", + to: "December 2021", + }, + { + school: "Integrated Preparatory Class (3iL)", + fields: ["Computer Science", "Maths"], + city: "Limoges", + country: "France", + from: "September 2017", + to: "May 2019", + }, + { + school: "Lycée Saint Pierre Saint Paul", + fields: ["General", "Science"], + city: "Dreux", + country: "France", + from: "September 2014", + to: "July 2017", + diplomas: [ + { + date: "July 2017", + name: "Scientific Bachelor Degree", + info: "with high honours", + }, + ], + }, +]; + +export default educations; diff --git a/pages/about.vue b/pages/about.vue index 2d74462..162d6a5 100644 --- a/pages/about.vue +++ b/pages/about.vue @@ -97,6 +97,49 @@ This allows me to plan my weeks and days to be more productive.

+
+

Education

+ +
+
+
+

{{ edu.school }}

+
+ {{ edu.from + }} + - {{ edu.to }} +
+
+ +

{{ edu.city }} - {{ edu.country }}

+ +

Fields :

+ {{ field }} +
+
    +
  • + {{ diploma.date }} - {{ diploma.name }} + {{ diploma.info }} +
  • +
+
+
+
+
+

Experience

@@ -134,10 +177,13 @@