11import Navbar from "../components/Navbar" ;
22
3+ const organizers = [
4+ {
5+ name : "Dr. Marinka Zitnik" ,
6+ title : "Associate Professor" ,
7+ affiliation : "Harvard Medical School & Broad Institute" ,
8+ bio : "Leader of Therapeutics Data Commons, AI4Science, NSF CAREER recipient" ,
9+ img : "/people/zitnik.jpg" ,
10+ links : {
11+ lab : "https://zitniklab.hms.harvard.edu"
12+ }
13+ } ,
14+ {
15+ name : "Shanghua Gao" ,
16+ title : "Postdoctoral Researcher" ,
17+ affiliation : "Harvard University" ,
18+ bio : "Focus: AI agents, generative models, foundation models" ,
19+ img : "/people/gao.jpg" ,
20+ links : {
21+ linkedin : "#" ,
22+ scholar : "#"
23+ }
24+ } ,
25+ {
26+ name : "Richard Zhu" ,
27+ title : "Undergraduate in Statistics & Concurrent Master's in CS" ,
28+ affiliation : "Harvard University" ,
29+ bio : "Focus: Agentic AI and geometric deep learning in structural biology" ,
30+ img : "/people/zhu.jpg" ,
31+ links : {
32+ linkedin : "#" ,
33+ scholar : "#"
34+ }
35+ } ,
36+ {
37+ name : "Zhenglun Kong" ,
38+ title : "Postdoctoral Researcher" ,
39+ affiliation : "Harvard DBMI" ,
40+ bio : "ML Systems Rising Star (2024); ex-Microsoft/ARM/Samsung; single-cell genomics & AI agents" ,
41+ img : "/people/kong.jpg" ,
42+ links : {
43+ linkedin : "#" ,
44+ scholar : "#"
45+ }
46+ } ,
47+ {
48+ name : "Xiaorui Su" ,
49+ title : "Postdoctoral Researcher" ,
50+ affiliation : "Harvard DBMI" ,
51+ bio : "Focus: KG-based agents for LLM factual reasoning in medical QA" ,
52+ img : "/people/su.jpg" ,
53+ links : {
54+ linkedin : "#" ,
55+ scholar : "#"
56+ }
57+ } ,
58+ {
59+ name : "Dr. Curtis Ginder" ,
60+ title : "Clinical Fellow" ,
61+ affiliation : "Brigham and Women’s / MGH" ,
62+ bio : "MD/MBA (University of Chicago); postdoc at HMS; co-founder of TimeDoc Health" ,
63+ img : "/people/ginder.jpg" ,
64+ links : {
65+ linkedin : "#" ,
66+ scholar : "#"
67+ }
68+ } ,
69+ {
70+ name : "Sufian Aldogom" ,
71+ title : "Research Affiliate" ,
72+ affiliation : "MIT CSAIL; NASA SARP Mentor; ex-Microsoft" ,
73+ bio : "Expert in AI engineering, platform development, systems design" ,
74+ img : "/people/sufian.jpg" ,
75+ links : {
76+ linkedin : "#" ,
77+ scholar : "#"
78+ }
79+ } ,
80+ {
81+ name : "Dr. Ishita Das" ,
82+ title : "Director" ,
83+ affiliation : "Milken Institute SPARC Program" ,
84+ bio : "Focus: Science policy, philanthropy strategy, stakeholder engagement" ,
85+ img : "/people/das.jpg" ,
86+ links : {
87+ linkedin : "#" ,
88+ scholar : "#"
89+ }
90+ } ,
91+ {
92+ name : "Dr. Taylor Evans" ,
93+ title : "Senior Associate" ,
94+ affiliation : "Milken Institute SPARC Program" ,
95+ bio : "Expert in rare diseases, diagnostics, and biomedical tech transfer" ,
96+ img : "/people/evans.jpg" ,
97+ links : {
98+ linkedin : "#" ,
99+ scholar : "#"
100+ }
101+ } ,
102+ {
103+ name : "Dr. Theodoros Tsiligkaridis" ,
104+ title : "Senior Research Scientist" ,
105+ affiliation : "MIT Lincoln Laboratory" ,
106+ bio : "Expert in trustworthy AI, foundation models, healthcare informatics" ,
107+ img : "/people/tsiligkaridis.jpg" ,
108+ links : {
109+ linkedin : "#" ,
110+ scholar : "#"
111+ }
112+ }
113+ ] ;
114+
3115export default function Organizers ( ) {
4116 return (
5117 < >
@@ -8,68 +120,55 @@ export default function Organizers() {
8120 < h1 className = "text-4xl font-serif font-bold mb-10 text-crimson text-center" >
9121 Organizing Committee
10122 </ h1 >
11- < div className = "space-y-6 max-w-4xl mx-auto text-md md:text-lg font-sans" >
12-
13- < p >
14- < strong > Shanghua Gao</ strong > < br />
15- Postdoctoral Researcher, Harvard University< br />
16- Focus: AI agents, generative models, foundation models
17- </ p >
18-
19- < p >
20- < strong > Richard Zhu</ strong > < br />
21- Undergraduate in Statistics and Concurrent Master’s in CS, Harvard University< br />
22- Focus: Agentic AI and geometric deep learning in structural biology
23- </ p >
24-
25- < p >
26- < strong > Zhenglun Kong</ strong > < br />
27- Postdoctoral Researcher, Harvard DBMI< br />
28- ML Systems Rising Star (2024); ex-Microsoft/ARM/Samsung; single-cell genomics & AI agents
29- </ p >
30-
31- < p >
32- < strong > Xiaorui Su</ strong > < br />
33- Postdoctoral Researcher, Harvard DBMI< br />
34- Focus: KG-based agents for LLM factual reasoning in medical QA
35- </ p >
36-
37- < p >
38- < strong > Dr. Curtis Ginder</ strong > < br />
39- Clinical Fellow, Brigham and Women’s / MGH< br />
40- MD/MBA (University of Chicago); postdoc at HMS; co-founder of TimeDoc Health
41- </ p >
42-
43- < p >
44- < strong > Sufian Aldogom</ strong > < br />
45- Research Affiliate, MIT CSAIL; NASA SARP Mentor; ex-Senior Lead at Microsoft< br />
46- Expert in AI engineering, platform development, systems design
47- </ p >
48-
49- < p >
50- < strong > Dr. Ishita Das</ strong > < br />
51- Director, Milken Institute SPARC Program< br />
52- Focus: Science policy, philanthropy strategy, stakeholder engagement
53- </ p >
54-
55- < p >
56- < strong > Dr. Taylor Evans</ strong > < br />
57- Senior Associate, Milken Institute SPARC Program< br />
58- Expert in rare diseases, diagnostics, and biomedical tech transfer
59- </ p >
60-
61- < p >
62- < strong > Dr. Theodoros Tsiligkaridis</ strong > < br />
63- Senior Research Scientist, MIT Lincoln Laboratory< br />
64- Expert in trustworthy AI, foundation models, healthcare informatics
65- </ p >
66-
67- < p >
68- < strong > Dr. Marinka Zitnik</ strong > < br />
69- Associate Professor, Harvard Medical School & Broad Institute < br />
70- Leader of Therapeutics Data Commons, AI4Science, NSF CAREER recipient
71- </ p >
72-
123+ < div className = "grid gap-8 grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 max-w-6xl mx-auto" >
124+ { organizers . map ( ( org , i ) => (
125+ < div
126+ key = { i }
127+ className = { `bg-white border border-gray-200 rounded-xl shadow p-4 flex flex-col items-center text-center hover:shadow-md transition ${ org . name . includes ( "Zitnik" ) ? 'sm:col-span-2 lg:col-span-3' : '' } ` }
128+ >
129+ < img
130+ src = { org . img }
131+ alt = { org . name }
132+ className = "w-24 h-24 rounded-full object-cover mb-4"
133+ />
134+ < h3 className = "text-lg font-semibold text-crimson" > { org . name } </ h3 >
135+ < p className = "text-sm font-medium text-gray-700" > { org . title } </ p >
136+ < p className = "text-sm text-gray-600" > { org . affiliation } </ p >
137+ < p className = "text-sm mt-2 text-gray-700" > { org . bio } </ p >
138+ < div className = "flex gap-3 mt-3 text-sm" >
139+ { org . links . scholar && (
140+ < a
141+ href = { org . links . scholar }
142+ target = "_blank"
143+ rel = "noopener noreferrer"
144+ className = "text-blue-600 underline"
145+ >
146+ Scholar
147+ </ a >
148+ ) }
149+ { org . links . lab && (
150+ < a
151+ href = { org . links . lab }
152+ target = "_blank"
153+ rel = "noopener noreferrer"
154+ className = "text-blue-600 underline"
155+ >
156+ Lab
157+ </ a >
158+ ) }
159+ { org . links . linkedin && (
160+ < a
161+ href = { org . links . linkedin }
162+ target = "_blank"
163+ rel = "noopener noreferrer"
164+ className = "text-blue-600 underline"
165+ >
166+ LinkedIn
167+ </ a >
168+ ) }
169+ </ div >
170+ </ div >
171+ ) ) }
73172 </ div >
74173 </ main >
75174 </ >
0 commit comments