From 4838df315931bb883f704ec3e1abe2685f296cdf Mon Sep 17 00:00:00 2001 From: HsiangNianian Date: Sat, 22 Apr 2023 19:52:26 +0800 Subject: 😀 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/content/team.ts | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 docs/content/team.ts (limited to 'docs/content/team.ts') diff --git a/docs/content/team.ts b/docs/content/team.ts new file mode 100644 index 0000000..0130589 --- /dev/null +++ b/docs/content/team.ts @@ -0,0 +1,80 @@ +const TURBO_TEAM: Record = { + jaredpalmer: { + name: "Jared Palmer", + twitterUsername: "jaredpalmer", + picture: "/images/people/jaredpalmer.jpeg", + }, + gaspargarcia: { + name: "Gaspar Garcia", + twitterUsername: "gaspargarcia_", + picture: "/images/people/gaspargarcia.jpeg", + }, + becca__z: { + name: "Becca Z.", + twitterUsername: "becca__z", + picture: "/images/people/becca__z.jpeg", + }, + gregsoltis: { + name: "Greg Soltis", + twitterUsername: "gsoltis", + picture: "/images/people/gregsoltis.jpeg", + }, + nathanhammond: { + name: "Nathan Hammond", + twitterUsername: "nathanhammond", + picture: "/images/people/nathanhammond.png", + }, + tomknickman: { + name: "Tom Knickman", + twitterUsername: "tknickman", + picture: "/images/people/tomknickman.jpeg", + }, + mehulkar: { + name: "Mehul Kar", + twitterUsername: "mehulkar", + picture: "/images/people/mehulkar.jpeg", + }, + mattpocock: { + name: "Matt Pocock", + twitterUsername: "mattpocockuk", + picture: "/images/people/mattpocock.jpeg", + }, + tobiaskoppers: { + name: "Tobias Koppers", + twitterUsername: "wSokra", + picture: "/images/people/tobiaskoppers-avatar.jpg", + }, + alexkirsz: { + name: "Alex Kirszenberg", + twitterUsername: "alexkirsz", + picture: "/images/people/alexkirsz.jpg", + }, + anthonyshew: { + name: "Anthony Schew", + twitterUsername: "anthonysheww", + picture: "/images/people/anthonyshew.png", + }, + nicholasyang: { + name: "Nicholas Yang", + twitterUsername: "nicholaslyang", + picture: "/images/people/nicholasyang.png", + }, + chrisolszewski: { + name: "Chris Olszewski", + picture: "/images/people/chrisolszewski.jpg", + }, + alexanderlyon: { + name: "Alexander Lyon", + twitterUsername: "_arlyon", + picture: "/images/people/alexanderlyon.jpg", + }, +}; + +export type Author = keyof typeof TURBO_TEAM; +export type AuthorDetails = { + name: string; + twitterUsername?: string; + picture: string; +}; + +export default TURBO_TEAM; -- cgit v1.2.3-70-g09d2