|
| 1 | +export type PersonRole = |
| 2 | + | "faculty" |
| 3 | + | "phd" |
| 4 | + | "graduate" |
| 5 | + | "undergraduate" |
| 6 | + | "alumni"; |
| 7 | + |
| 8 | +export interface Person { |
| 9 | + name: string; |
| 10 | + image: string; |
| 11 | + url: string; |
| 12 | + role: string; |
| 13 | + period: string; |
| 14 | + category: "current" | "alumni"; |
| 15 | + destination?: string; |
| 16 | +} |
| 17 | + |
| 18 | +export const people: Person[] = [ |
| 19 | + // --- Current Members --- |
| 20 | + { |
| 21 | + name: "qiyu li", |
| 22 | + image: "https://www.haojianj.in/lab/qiyuli.gif", |
| 23 | + url: "https://qyli00.github.io/", |
| 24 | + role: "phd student", |
| 25 | + period: "2023 –", |
| 26 | + category: "current", |
| 27 | + }, |
| 28 | + { |
| 29 | + name: "shao-yu chu", |
| 30 | + image: "https://www.haojianj.in/lab/shao-yu-chu.jpg", |
| 31 | + url: "https://www.linkedin.com/in/shao-yu-chu/", |
| 32 | + role: "phd student", |
| 33 | + period: "2024 –", |
| 34 | + category: "current", |
| 35 | + }, |
| 36 | + { |
| 37 | + name: "xuan liu", |
| 38 | + image: "https://www.haojianj.in/lab/xuanliu.jpeg", |
| 39 | + url: "https://xuanl17.github.io/", |
| 40 | + role: "phd student", |
| 41 | + period: "2025 –", |
| 42 | + category: "current", |
| 43 | + }, |
| 44 | + { |
| 45 | + name: "muchan li", |
| 46 | + image: "https://www.haojianj.in/lab/muchanli.jpeg", |
| 47 | + url: "https://www.linkedin.com/in/muchan-li-989703227/", |
| 48 | + role: "graduate student", |
| 49 | + period: "2023 –", |
| 50 | + category: "current", |
| 51 | + }, |
| 52 | + { |
| 53 | + name: "john driscoll", |
| 54 | + image: "https://www.haojianj.in/lab/johndriscoll.jpeg", |
| 55 | + url: "https://github.com/jjdrisco", |
| 56 | + role: "graduate student", |
| 57 | + period: "2025 –", |
| 58 | + category: "current", |
| 59 | + }, |
| 60 | + { |
| 61 | + name: "lucas chen", |
| 62 | + image: "https://www.haojianj.in/lab/yulinchen.jpeg", |
| 63 | + url: "https://www.linkedin.com/in/yulin-chen-1503512a5/", |
| 64 | + role: "undergraduate", |
| 65 | + period: "2025 –", |
| 66 | + category: "current", |
| 67 | + }, |
| 68 | + { |
| 69 | + name: "viki shi", |
| 70 | + image: "https://www.haojianj.in/lab/vikishi.jpeg", |
| 71 | + url: "https://www.linkedin.com/in/viki-shi/", |
| 72 | + role: "undergraduate", |
| 73 | + period: "2025 –", |
| 74 | + category: "current", |
| 75 | + }, |
| 76 | + { |
| 77 | + name: "peter shamoun", |
| 78 | + image: "https://www.haojianj.in/lab/petershamoun.jpeg", |
| 79 | + url: "https://www.linkedin.com/in/peter-shamoun/", |
| 80 | + role: "undergraduate", |
| 81 | + period: "2025 –", |
| 82 | + category: "current", |
| 83 | + }, |
| 84 | + { |
| 85 | + name: "izak vucharatavintara", |
| 86 | + image: "https://www.haojianj.in/lab/lzakvucharatavintara.jpeg", |
| 87 | + url: "https://www.linkedin.com/in/izak-vuch/", |
| 88 | + role: "undergraduate", |
| 89 | + period: "2025 –", |
| 90 | + category: "current", |
| 91 | + }, |
| 92 | + |
| 93 | + // --- Alumni --- |
| 94 | + { |
| 95 | + name: "max wong", |
| 96 | + image: "https://www.haojianj.in/lab/maxwong.jpeg", |
| 97 | + url: "https://www.linkedin.com/in/wys6299/", |
| 98 | + role: "undergraduate", |
| 99 | + period: "2024 – 2025", |
| 100 | + category: "alumni", |
| 101 | + }, |
| 102 | + { |
| 103 | + name: "chris wong", |
| 104 | + image: "https://www.haojianj.in/lab/chriswong.jpeg", |
| 105 | + url: "https://www.linkedin.com/in/ykw001/", |
| 106 | + role: "undergraduate", |
| 107 | + period: "2024 – 2025", |
| 108 | + category: "alumni", |
| 109 | + }, |
| 110 | + { |
| 111 | + name: "jinhe wen", |
| 112 | + image: "https://www.haojianj.in/lab/jinhewen.jpeg", |
| 113 | + url: "https://jinhewen.owlstown.net/", |
| 114 | + role: "ucsd ms (2023 – 2024)", |
| 115 | + period: "2023 – 2024", |
| 116 | + category: "alumni", |
| 117 | + destination: "hkust phd", |
| 118 | + }, |
| 119 | + { |
| 120 | + name: "longxuan yu", |
| 121 | + image: "https://www.haojianj.in/lab/longxuanyu.jpg", |
| 122 | + url: "https://fengsxy.github.io/", |
| 123 | + role: "ucsd ms", |
| 124 | + period: "2024", |
| 125 | + category: "alumni", |
| 126 | + destination: "ucr phd", |
| 127 | + }, |
| 128 | + { |
| 129 | + name: "jason dai", |
| 130 | + image: "https://www.haojianj.in/lab/jasondai.jpeg", |
| 131 | + url: "https://www.linkedin.com/in/jason-dai9/", |
| 132 | + role: "undergraduate", |
| 133 | + period: "2024", |
| 134 | + category: "alumni", |
| 135 | + destination: "upenn ms", |
| 136 | + }, |
| 137 | + { |
| 138 | + name: "yuxuan liu", |
| 139 | + image: "https://www.haojianj.in/lab/yuxuanliu.jpeg", |
| 140 | + url: "https://www.linkedin.com/in/arrie-yuxuan/", |
| 141 | + role: "undergraduate", |
| 142 | + period: "2024", |
| 143 | + category: "alumni", |
| 144 | + destination: "columbia ms", |
| 145 | + }, |
| 146 | + { |
| 147 | + name: "yuhe tian", |
| 148 | + image: "https://www.haojianj.in/lab/yuhe-tian.jpeg", |
| 149 | + url: "https://www.linkedin.com/in/yuhe-tian-07244b242/", |
| 150 | + role: "undergraduate", |
| 151 | + period: "2024", |
| 152 | + category: "alumni", |
| 153 | + destination: "ucsd ms", |
| 154 | + }, |
| 155 | + { |
| 156 | + name: "trista xu", |
| 157 | + image: "https://www.haojianj.in/lab/tristaxu.jpeg", |
| 158 | + url: "https://www.linkedin.com/in/tristaxu01/", |
| 159 | + role: "undergraduate", |
| 160 | + period: "2024", |
| 161 | + category: "alumni", |
| 162 | + destination: "umich ms", |
| 163 | + }, |
| 164 | + { |
| 165 | + name: "elijah zhao", |
| 166 | + image: "https://www.haojianj.in/lab/elijahzhao.jpeg", |
| 167 | + url: "https://www.linkedin.com/in/yunpeng-elijah-zhao/", |
| 168 | + role: "undergraduate", |
| 169 | + period: "2024", |
| 170 | + category: "alumni", |
| 171 | + destination: "cmu ms", |
| 172 | + }, |
| 173 | + { |
| 174 | + name: "andrew zhao", |
| 175 | + image: "https://www.haojianj.in/lab/andrewzhao.jpeg", |
| 176 | + url: "https://www.linkedin.com/in/andrew-zhao-609aa6205/", |
| 177 | + role: "undergraduate", |
| 178 | + period: "2024", |
| 179 | + category: "alumni", |
| 180 | + destination: "harvard ms", |
| 181 | + }, |
| 182 | + { |
| 183 | + name: "tony li", |
| 184 | + image: "https://www.haojianj.in/lab/tonyli.jpg", |
| 185 | + url: "https://tonyli1.github.io/", |
| 186 | + role: "phd collaborator", |
| 187 | + period: "2023 – 2024", |
| 188 | + category: "alumni", |
| 189 | + }, |
| 190 | + { |
| 191 | + name: "peiran wang", |
| 192 | + image: "https://www.haojianj.in/lab/peiranwang.png", |
| 193 | + url: "https://whilebug.github.io/p", |
| 194 | + role: "remote intern", |
| 195 | + period: "2023", |
| 196 | + category: "alumni", |
| 197 | + destination: "ucla phd", |
| 198 | + }, |
| 199 | + { |
| 200 | + name: "arshia arya", |
| 201 | + image: "https://www.haojianj.in/lab/arshia.jpeg", |
| 202 | + url: "https://arshiaarya.github.io/", |
| 203 | + role: "rotation phd", |
| 204 | + period: "2023 fall", |
| 205 | + category: "alumni", |
| 206 | + }, |
| 207 | + { |
| 208 | + name: "joanne pon", |
| 209 | + image: "https://www.haojianj.in/lab/joannepon.jpeg", |
| 210 | + url: "https://www.linkedin.com/in/joanne-pon-9bb87b231/", |
| 211 | + role: "undergraduate", |
| 212 | + period: "2023", |
| 213 | + category: "alumni", |
| 214 | + destination: "cmu ms", |
| 215 | + }, |
| 216 | + { |
| 217 | + name: "yuwei xiao", |
| 218 | + image: "https://www.haojianj.in/lab/yuweixiao.jpeg", |
| 219 | + url: "https://xavier-shaw.github.io/", |
| 220 | + role: "undergraduate", |
| 221 | + period: "2023", |
| 222 | + category: "alumni", |
| 223 | + destination: "ucla phd", |
| 224 | + }, |
| 225 | + { |
| 226 | + name: "yaqing yang", |
| 227 | + image: "https://www.haojianj.in/lab/yaqingyang.png", |
| 228 | + url: "https://yyqbeatrice.github.io/yaqing/", |
| 229 | + role: "undergraduate", |
| 230 | + period: "2023", |
| 231 | + category: "alumni", |
| 232 | + destination: "cmu phd", |
| 233 | + }, |
| 234 | + { |
| 235 | + name: "zirui cheng", |
| 236 | + image: "https://www.haojianj.in/lab/ziruicheng.png", |
| 237 | + url: "https://chengzr01.github.io/", |
| 238 | + role: "undergraduate", |
| 239 | + period: "2023", |
| 240 | + category: "alumni", |
| 241 | + destination: "uiuc ms", |
| 242 | + }, |
| 243 | + { |
| 244 | + name: "jingfei xu", |
| 245 | + image: "https://www.haojianj.in/lab/jingfeixu.jpeg", |
| 246 | + url: "https://www.linkedin.com/in/jingfei-xu-220774207/", |
| 247 | + role: "undergraduate", |
| 248 | + period: "2023", |
| 249 | + category: "alumni", |
| 250 | + destination: "cmu ms", |
| 251 | + }, |
| 252 | + { |
| 253 | + name: "xiyan shao", |
| 254 | + image: "https://www.haojianj.in/lab/xiyanshao.png", |
| 255 | + url: "https://www.xiyan.dev/about/", |
| 256 | + role: "undergraduate", |
| 257 | + period: "2023", |
| 258 | + category: "alumni", |
| 259 | + destination: "duolingo", |
| 260 | + }, |
| 261 | + { |
| 262 | + name: "gram liu", |
| 263 | + image: "https://www.haojianj.in/lab/gramliu.webp", |
| 264 | + url: "https://gramliu.com/", |
| 265 | + role: "undergraduate", |
| 266 | + period: "2022", |
| 267 | + category: "alumni", |
| 268 | + destination: "stripe", |
| 269 | + }, |
| 270 | + { |
| 271 | + name: "david ethan hwang", |
| 272 | + image: "https://www.haojianj.in/lab/davidhwang.jpeg", |
| 273 | + url: "https://www.linkedin.com/in/h-davidethan", |
| 274 | + role: "undergraduate", |
| 275 | + period: "2022", |
| 276 | + category: "alumni", |
| 277 | + }, |
| 278 | +]; |
0 commit comments