This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/authors/authors.ts
2020-07-14 18:30:43 -05:00

51 lines
1.3 KiB
TypeScript

export type Author = {
photo: string; // url of photo relative to content/authors/images/, EXCLUDING EXTENSION
name: string;
title: string;
blurb: string;
email?: string;
facebook?: string;
linkedin?: string;
github?: string;
website?: string;
codeforces?: string;
};
export const Authors: Author[] = [
{
photo: 'benq',
name: 'Benjamin Qi',
title: 'Content Director',
blurb: 'Benjamin Qi is a two-time IOI winner, USACO Problemsetter, and part of the MIT Class of 2023.',
facebook: "bqi343",
codeforces: "Benq",
email: "bqi343@gmail.com",
github: "bqi343"
},
{
photo: 'briancdean',
name: 'Brian C. Dean',
title: 'Content Director',
blurb: 'Brian Christopher Dean is the director of the USA Computing Olympiad.',
},
{
photo: 'nathanw',
name: 'Nathan Wang',
title: 'Coordinator & Webmaster',
blurb: 'Nathan Wang is a zero-time IOI qualifier, USACO n00b, and part of the Community College Class of 2026.',
website: "https://thecodingwizard.me/",
email: "nathan.r.wang@gmail.com",
github: "thecodingwizard",
},
{
photo: 'benq',
name: 'Michael Cao',
title: 'Content Author',
blurb: 'Is a wizard.',
facebook: "mike.lao.9400",
codeforces: "caoash",
email: "cao.michael14@gmail.com",
github: "caoash",
},
];