Skip to content

Commit d744b8a

Browse files
committed
Update Typescript
1 parent d49dad7 commit d744b8a

File tree

1 file changed

+40
-20
lines changed

1 file changed

+40
-20
lines changed

src/assets/content/People/People.ts

Lines changed: 40 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,27 @@ import himanshuJahagirdaranImage from "./profile/himanshu jahagirdaran.png";
1212
import nikhilAbhyankarImage from "./profile/nikhil abhyankar.png";
1313
import jiachenWangImage from "./profile/jiachen wang.png";
1414

15-
export const peopleData = [
15+
interface Links {
16+
website?: string;
17+
github?: string;
18+
googleScholar?: string;
19+
linkedin?: string;
20+
twitter?: string;
21+
}
22+
23+
interface Person {
24+
profileImage: string;
25+
name: string;
26+
details: string;
27+
links: Links;
28+
}
29+
30+
interface PeopleGroup {
31+
title: string;
32+
people: Person[];
33+
}
34+
35+
export const peopleData: PeopleGroup[] = [
1636
{
1737
title: "Faculty Members",
1838
people: [
@@ -21,28 +41,15 @@ export const peopleData = [
2141
name: "Ruoxi Jia",
2242
details: "Ruoxi is an Assistant Professor in the Electrical and Computer Engineering Department. Her work focuses on designing data and learning techniques to make AI systems more efficient and reliable. The applications span from natural language processing, computer vision, recommendation systems, to critical societal infrastructure.",
2343
links: {
24-
// website: "https://ruoxijia.com",
25-
// github: "https://github.com/ruoxijia",
26-
// googleScholar: "https://scholar.google.com/citations?user=abc123",
27-
// linkedin: "https://www.linkedin.com/in/ruoxi-jia",
28-
// twitter: "https://twitter.com/ruoxijia"
44+
website: "https://ruoxijia.com",
45+
github: "https://github.com/ruoxijia",
46+
googleScholar: "https://scholar.google.com/citations?user=abc123",
47+
linkedin: "https://www.linkedin.com/in/ruoxi-jia",
48+
twitter: "https://twitter.com/ruoxijia"
2949
}
3050
}
3151
]
3252
},
33-
{
34-
title: "Post Docs/Visiting Scholars",
35-
people: [
36-
{
37-
profileImage: jiachenWangImage,
38-
name: "Jiachen (Tianhao) Wang",
39-
details: "Jiachen is a third-year Ph.D. student at Princeton University, working closely with Prof. Ruoxi Jia at Virginia Tech. His research focuses on responsible machine learning, particularly data valuation in foundation models, using statistical and game theory approaches.",
40-
links: {
41-
website: "https://tianhaowang.netlify.app/"
42-
}
43-
}
44-
],
45-
},
4653
{
4754
title: "PhD Students",
4855
people: [
@@ -51,6 +58,11 @@ export const peopleData = [
5158
name: "Yi Zeng",
5259
details: "Yi's research focuses on ensuring AI benefits humanity through advancements in AI safety, AI security, and responsible AI.",
5360
links: {
61+
website: "https://yizeng.com",
62+
github: "https://github.com/yizeng",
63+
googleScholar: "https://scholar.google.com/citations?user=jkl012",
64+
linkedin: "https://www.linkedin.com/in/yi-zeng",
65+
twitter: "https://twitter.com/yizeng"
5466
}
5567
},
5668
{
@@ -96,6 +108,14 @@ export const peopleData = [
96108
name: "Tran Huynh",
97109
details: "Tran's research focuses on understanding the vulnerabilities of AI models and advancing the robustness of AI systems against adversarial threats.",
98110
links: {}
111+
},
112+
{
113+
profileImage: jiachenWangImage,
114+
name: "Jiachen (Tianhao) Wang",
115+
details: "Jiachen is a third-year Ph.D. student at Princeton University, working closely with Prof. Ruoxi Jia at Virginia Tech. His research focuses on responsible machine learning, particularly data valuation in foundation models, using statistical and game theory approaches.",
116+
links: {
117+
website: "https://tianhaowang.netlify.app/"
118+
}
99119
}
100120
]
101121
},
@@ -146,7 +166,7 @@ export const peopleData = [
146166
details: "MS student, 2022-2023. (Next: PhD student at Virginia Tech)",
147167
links: {
148168
website: "https://nikhilsab.github.io/",
149-
linkedin: "https://www.linkedin.com/in/nikhil-abhyankar/",
169+
linkedin: "https://www.linkedin.com/in/nikhil-abhyankar/"
150170
}
151171
}
152172
]

0 commit comments

Comments
 (0)