Skip to content

Commit 22feb32

Browse files
committed
update
1 parent daa7d21 commit 22feb32

File tree

1 file changed

+41
-66
lines changed

1 file changed

+41
-66
lines changed

src/pages/Organizers.jsx

Lines changed: 41 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,14 @@
11
import Navbar from "../components/Navbar";
22

33
const advisers = [
4-
{
5-
name: "Marinka Zitnik",
6-
title: "Associate Professor",
7-
affiliation: "Harvard Medical School & Broad Institute",
8-
img: "people/zitnik.jpg",
9-
links: {
10-
page: "https://zitniklab.hms.harvard.edu/",
11-
},
12-
},
13-
{
14-
name: "Theodoros Tsiligkaridis",
15-
title: "Senior Research Scientist",
16-
affiliation: "MIT Lincoln Laboratory",
17-
img: "people/tsiligkaridis.jpg",
18-
links: {
19-
page: "https://sites.google.com/view/theo-t",
20-
},
21-
},
4+
225
];
236

247
const coordinator = [
8+
9+
];
10+
11+
const technicalOrganizers = [
2512
{
2613
name: "Shanghua Gao",
2714
title: "Postdoctoral Researcher",
@@ -31,9 +18,6 @@ const coordinator = [
3118
page: "https://shgao.site",
3219
},
3320
},
34-
];
35-
36-
const technicalOrganizers = [
3721
{
3822
name: "Richard Zhu",
3923
title: "Undergraduate in Statistics & Concurrent Master's in CS",
@@ -44,21 +28,21 @@ const technicalOrganizers = [
4428
},
4529
},
4630
{
47-
name: "Sufian Aldogom",
48-
title: "Research Affiliate",
49-
affiliation: "MIT CSAIL - NASA SARP Mentor - Amazon Program Manager - ex-Microsoft",
50-
img: "people/sufian.jpg",
31+
name: "Zhenglun Kong",
32+
title: "Postdoctoral Researcher",
33+
affiliation: "Harvard DBMI",
34+
img: "people/kong.jpg",
5135
links: {
52-
page: "https://www.csail.mit.edu/person/sufian-aldogom",
36+
page: "https://zlkong.github.io/homepage/",
5337
},
5438
},
5539
{
56-
name: "Zhenglun Kong",
40+
name: "Xiaorui Su",
5741
title: "Postdoctoral Researcher",
5842
affiliation: "Harvard DBMI",
59-
img: "people/kong.jpg",
43+
img: "people/su.jpg",
6044
links: {
61-
page: "https://zlkong.github.io/homepage/",
45+
page: "https://scholar.google.com/citations?hl=zh-CN&user=Awdn73MAAAAJ",
6246
},
6347
},
6448
{
@@ -71,17 +55,14 @@ const technicalOrganizers = [
7155
},
7256
},
7357
{
74-
name: "Xiaorui Su",
75-
title: "Postdoctoral Researcher",
76-
affiliation: "Harvard DBMI",
77-
img: "people/su.jpg",
58+
name: "Sufian Aldogom",
59+
title: "Research Affiliate",
60+
affiliation: "MIT CSAIL - NASA SARP Mentor - Amazon Program Manager - ex-Microsoft",
61+
img: "people/sufian.jpg",
7862
links: {
79-
page: "https://scholar.google.com/citations?hl=zh-CN&user=Awdn73MAAAAJ",
63+
page: "https://www.csail.mit.edu/person/sufian-aldogom",
8064
},
8165
},
82-
];
83-
84-
const organizationDissemination = [
8566
{
8667
name: "Ishita Das",
8768
title: "Director",
@@ -100,6 +81,28 @@ const organizationDissemination = [
10081
page: "https://milkeninstitute.org/philanthropy/science-philanthropy-accelerator-research-and-collaboration-sparc/taylor-evans",
10182
},
10283
},
84+
{
85+
name: "Theodoros Tsiligkaridis",
86+
title: "Senior Research Scientist",
87+
affiliation: "MIT Lincoln Laboratory",
88+
img: "people/tsiligkaridis.jpg",
89+
links: {
90+
page: "https://sites.google.com/view/theo-t",
91+
},
92+
},
93+
{
94+
name: "Marinka Zitnik",
95+
title: "Associate Professor",
96+
affiliation: "Harvard Medical School & Broad Institute",
97+
img: "people/zitnik.jpg",
98+
links: {
99+
page: "https://zitniklab.hms.harvard.edu/",
100+
},
101+
},
102+
];
103+
104+
const organizationDissemination = [
105+
103106
];
104107

105108
const PersonCard = ({ org }) => (
@@ -136,45 +139,17 @@ export default function Organizers() {
136139
Organizing Committee
137140
</h1>
138141

139-
{/* Advisers Section */}
140-
<div className="mb-12">
141-
<h2 className="text-2xl font-semibold text-gray-800 mb-6 text-center">Advisers</h2>
142-
<div className="grid gap-8 grid-cols-1 md:grid-cols-2 max-w-4xl mx-auto">
143-
{advisers.map((org, i) => (
144-
<PersonCard key={i} org={org} />
145-
))}
146-
</div>
147-
</div>
148-
149-
{/* Coordinator Section */}
150-
<div className="mb-12">
151-
<h2 className="text-2xl font-semibold text-gray-800 mb-6 text-center">Coordinator</h2>
152-
<div className="grid gap-8 grid-cols-1 max-w-sm mx-auto">
153-
{coordinator.map((org, i) => (
154-
<PersonCard key={i} org={org} />
155-
))}
156-
</div>
157-
</div>
158142

159143
{/* Technical Organizers Section */}
160144
<div className="mb-12">
161-
<h2 className="text-2xl font-semibold text-gray-800 mb-6 text-center">Technical Organizers</h2>
145+
<h2 className="text-2xl font-semibold text-gray-800 mb-6 text-center">Organizers</h2>
162146
<div className="grid gap-8 grid-cols-1 md:grid-cols-2 max-w-4xl mx-auto">
163147
{technicalOrganizers.map((org, i) => (
164148
<PersonCard key={i} org={org} />
165149
))}
166150
</div>
167151
</div>
168152

169-
{/* Organization & Dissemination Section */}
170-
<div className="mb-12">
171-
<h2 className="text-2xl font-semibold text-gray-800 mb-6 text-center">Organization & Dissemination</h2>
172-
<div className="grid gap-8 grid-cols-1 md:grid-cols-2 max-w-4xl mx-auto">
173-
{organizationDissemination.map((org, i) => (
174-
<PersonCard key={i} org={org} />
175-
))}
176-
</div>
177-
</div>
178153
</main>
179154
</>
180155
);

0 commit comments

Comments
 (0)