-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlistOfAdvisors.js
More file actions
37 lines (36 loc) · 2.68 KB
/
listOfAdvisors.js
File metadata and controls
37 lines (36 loc) · 2.68 KB
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
import freddy from "../../assets/images/advisors/freddy.png";
import cesar from "../../assets/images/advisors/cesar.png";
// import henry_lau from "../../assets/images/advisors/henry_lau.png";
// import kaimin_shih from "../../assets/images/advisors/kaimin_shih.png";
export const listOfAdvisors = [
{
name: "Freddy Law",
picture: freddy,
role: "Advisor",
linkedin: "https://www.linkedin.com/in/freddylaw/",
description:
"Freddy is an innovation consultant and helps organizations to realise their innovative potentials. He teaches design thinking in The University of Hong Kong and is an advisor to the Hong Kong government for its human resource development policy. Freddy is an award-winning social entrepreneur with over 10 years experience. He is best known for design thinking, lean startup, entrepreneurship, B Corp, cross-sector collaboration, storytelling and intercultural communication. His passion is nurturing and scaling innovation for and around the world.",
},
{
name: "Cesar Jung-Harada",
picture: cesar,
role: "Advisor",
linkedin: "https://www.linkedin.com/in/cesarharada",
description:
"Cesar Jung-Harada is a Senior Lecturer for the Design+ Bachelor of Arts and Sciences Programme. He teaches both technical and theoretical aspects of design with an emphasis on invention with social and environmental impact.",
},
// {
// name: "Dr. Henry Y.K. Lau",
// picture: henry_lau,
// role: "Advisor",
// description:
// "Dr. Lau is the Associate Dean of Engineering (Innovation) at the University of Hong Kong. His research interest includes virtual and augmented reality, and artificial intelligence. He is also interested in the design and evaluation of automated material handling systems using computer simulation. He leads the development of the IMSE CAVE VR system with researchers at the Department of Industrial and Manufacturing Systems Engineering.",
// },
// {
// name: "Dr. Kaimin Shih",
// picture: kaimin_shih,
// role: "Advisor",
// description:
// "Dr Kaimin Shih is an Associate Professor in the Department of Civil Engineering at the University of Hong Kong (HKU). He received his M.S. and Ph.D. degrees in Environmental Engineering and Science from Stanford University at US. Dr. Shih is a sustainability advocate and his research work is mainly to engineer and employ material properties for innovative waste and water treatment applications. He is particularly interested in exploring pollutant behavior on material surfaces and extensively conducts research projects related to hazardous metals, emerging pollutants, membrane materials, soil remediation, and sludge/ash management.",
// },
];