-
Notifications
You must be signed in to change notification settings - Fork 10
/
education.js
43 lines (43 loc) · 968 Bytes
/
education.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
export default [
{
name: 'Lycée Turgot',
diploma: 'Baccalauréat scientifique',
location: 'Limoges, France',
started_at: '2013-06-17',
ended_at: '2013-06-17',
},
{
name: 'IUT du Limousin',
diploma: 'DUT Informatique',
location: 'Limoges, France',
started_at: '2013-01-01',
ended_at: '2015-06-23',
},
{
name: 'Jönköping University',
diploma: 'Bachelor of Engineering',
location: {
en: 'Jönköping, Sweden',
fr: 'Jönköping, Suède',
},
started_at: '2016-01-11',
ended_at: '2016-06-03',
},
{
name: 'Université Laval',
diploma: 'Baccalauréat Informatique',
location: {
en: 'Quebec City, Canada',
fr: 'Québec, Canada',
},
started_at: '2017-09-05',
ended_at: '2017-12-14',
},
{
name: 'ECE Paris',
diploma: "Diplôme d'Ingénieur",
location: 'Paris, France',
started_at: '2015-09-05',
ended_at: '2018-01-01',
},
]