-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy patheducation.ts
50 lines (50 loc) · 1.58 KB
/
education.ts
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
44
45
46
47
48
49
50
export default {
title: 'Education',
data: [
{
school: 'ECNU',
schoolFull: 'East China Normal University',
college: 'College of Automation',
logo: './school/ecnu.png',
startDate: '2021-01',
graduationDate: undefined,
degree: 'Bachelor',
major: 'Electronic and Information Engineering',
minor: 'Mathematics',
},
{
school: 'SISU',
schoolFull: 'Shanghai International Studies University',
college: 'College of Liberal Arts',
logo: './school/sisu.png',
startDate: '2021-01',
graduationDate: '2011-01',
degree: 'Bachelor',
major: 'English',
minor: 'German',
},
{
school: 'Tongji',
schoolFull: 'Tongji University',
college: 'College of Automotive Engineering',
logo: './school/tongji.png',
startDate: '2021-01',
graduationDate: '2019-01',
degree: 'Master',
major: 'Automotive Design',
minor: 'German',
},
{
school: 'ECUST',
schoolFull: 'East China University of Science and Technology',
college: 'Sino-German College of Engineering',
logo: './school/ecust.png',
startDate: '2011-01',
graduationDate: '2015-01',
degree: 'Bachelor',
major: 'Electrical Engineering and Automation',
minor: 'German',
},
],
status: 0,
}