Skip to content

Commit

Permalink
Add contributor info
Browse files Browse the repository at this point in the history
  • Loading branch information
yichenanne committed May 11, 2024
1 parent c0ec871 commit edfb24a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,12 @@ export const MINGHUA_TSAI: Contributor = {
institute: Institute.UCIrvine,
};

export const ANNE_LIN: Contributor = {
name: "Anne Lin",
email: "ylin56@uci.edu",
institute: Institute.UCIrvine,
};

export const contributors: Contributor[] = [
ZHIQIN_LU,
BRIAN_CABALLERO,
Expand Down Expand Up @@ -450,7 +456,8 @@ export const contributors: Contributor[] = [
KIRA_ZHANG,
MAUREEN_CHANG,
MENGMENG_TIAN,
MINGHUA_TSAI
MINGHUA_TSAI,
ANNE_LIN
].sort((a, b) => {
const aLastName = a.name.split(" ").pop() as string;
const bLastName = b.name.split(" ").pop() as string;
Expand Down Expand Up @@ -532,7 +539,7 @@ export const topics: Topic[] = [
essay: "pdfs/topic03.pdf",
animationContributors: [XINXI_GUO, YI_CHEN],
essayContributors: [ZHIQIN_LU, SHIYI_LYU],
captionContributors: [MINGHUA_TSAI],
captionContributors: [MINGHUA_TSAI, ANNE_LIN],
},
{
name: "Erdős-Mordell Inequality",
Expand Down

0 comments on commit edfb24a

Please sign in to comment.