-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheducation.ts
More file actions
26 lines (25 loc) · 751 Bytes
/
Copy patheducation.ts
File metadata and controls
26 lines (25 loc) · 751 Bytes
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
//import nccuLogo from "./images/nccu_logo.svg";
//import ntuLogo from "./images/ntu_logo.svg";
//import asuLogo from "./images/asu_logo.svg";
import epflLogo from "./images/epfl_logo.svg";
import cuhkLogo from "./images/cuhk_logo.png";
export const EduData = [
{
degree: "M.S. in Robotics with minor in Data Science",
school: "École polytechnique fédérale de Lausanne",
years: "2024 - Present",
logo: epflLogo,
},
{
degree: "Exchange Student Program",
school: "Chinese University of Hong Kong (CUHK)",
years: "2023 - 2024",
logo: cuhkLogo,
},
{
degree: "B.S. in Mechanical Engineering",
school: "École polytechnique fédérale de Lausanne",
years: "2021 - 2024",
logo: epflLogo,
},
];