diff --git a/website/docs/community/team.md b/website/docs/community/team.md index 0b5c4d92c7..fb149dd1d9 100644 --- a/website/docs/community/team.md +++ b/website/docs/community/team.md @@ -4,157 +4,62 @@ title: Team slug: /team --- +import TeamProfileCard from "@site/src/components/TeamProfileCard" + +export function TeamProfileCardCol(props) { return } + ## Active Team
-
-
-
-
- -
-

Alexey Pyltsyn

-
-
-
-
- Obsessed open-source enthusiast πŸ‘‹ Eternal amateur at everything πŸ€·β€β™‚οΈ Maintainer of Russian docs on PHP, React, Kubernetes and much more 🧐 -
-
-
- GitHub -
-
-
-
-
-
-
-
- -
-

Fanny Vieira

-
-
-
-
- Fanny got started with web development in high school, building a project for the school kitchen. In her free time she loves contributing to Open Source, occasionally writing on her blog about her experiences, cooking, and creating Spotify playlists. -
-
-
- GitHub - Twitter -
-
-
-
-
-
-
-
- -
-

Joel Marcey

-
-
-
-
- Docusaurus founder and now ever grateful Docusaurus cheerleader to those who actually write code for it. -
-
-
- GitHub - Twitter -
-
-
-
-
-
-
-
- -
-

Yangshun Tay

-
-
-
-
- Full Front End Stack developer who likes working on the Jamstack. Working on Docusaurus made him Facebook's unofficial part-time Open Source webmaster, which is an awesome role to be in. -
-
-
- GitHub - Twitter -
-
-
-
+ + Obsessed open-source enthusiast πŸ‘‹ Eternal amateur at everything πŸ€·β€β™‚οΈ Maintainer of Russian docs on PHP, React, Kubernetes and much more 🧐 + + + Fanny got started with web development in high school, building a project for the school kitchen. In her free time she loves contributing to Open Source, occasionally writing on her blog about her experiences, cooking, and creating Spotify playlists. + + + Docusaurus founder and now ever grateful Docusaurus cheerleader to those who actually write code for it. + + + React lover since 2014. Freelance, helping Facebook ship Docusaurus v2. + + + Full Front End Stack developer who likes working on the Jamstack. Working on Docusaurus made him Facebook's unofficial part-time Open Source webmaster, which is an awesome role to be in. +
## Honorary Alumni
-
-
-
-
- -
-

Endilie Yacop Sucipto

-
-
-
-
- Maintainer @docusaurus Β· πŸ”₯πŸ”₯πŸ”₯ -
-
-
- GitHub - Twitter -
-
-
-
-
-
-
-
- -
-

Wei Gao

-
-
-
-
- πŸ‘©πŸ»β€πŸŒΎ Work in progress React developer, maintains Docusaurus, writes docs and spams this world with many websites. -
-
-
- GitHub - Twitter -
-
-
-
+ + Maintainer @docusaurus Β· πŸ”₯πŸ”₯πŸ”₯ + + + πŸ»β€πŸŒΎ Work in progress React developer, maintains Docusaurus, writes docs and spams this world with many websites. +
## Acknowledgements diff --git a/website/src/components/TeamProfileCard/index.js b/website/src/components/TeamProfileCard/index.js new file mode 100644 index 0000000000..d9f80a8468 --- /dev/null +++ b/website/src/components/TeamProfileCard/index.js @@ -0,0 +1,49 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + +import React from 'react'; + +export default function TeamProfileCard({ + className, + name, + children, + githubUrl, + twitterUrl, +}) { + return ( +
+
+
+
+ +
+

{name}

+
+
+
+
{children}
+
+
+ {githubUrl && ( + + GitHub + + )} + {twitterUrl && ( + + Twitter + + )} +
+
+
+
+ ); +}