/** * 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, {type ReactNode} from 'react'; import Translate from '@docusaurus/Translate'; import Link from '@docusaurus/Link'; import Heading from '@theme/Heading'; function WebsiteLink({to, children}: {to: string; children?: ReactNode}) { return ( {children ?? ( website )} ); } type ProfileProps = { className?: string; name: string; children: ReactNode; githubUrl: string; twitterUrl?: string; }; function TeamProfileCard({ className, name, children, githubUrl, twitterUrl, }: ProfileProps) { return (
{`${name}'s
{name}
{children}
{githubUrl && ( GitHub )} {twitterUrl && ( Twitter )}
); } function TeamProfileCardCol(props: ProfileProps) { return ( ); } export function ActiveTeamRow(): JSX.Element { return (
Obsessed open-source enthusiast 👋 Eternal amateur at everything 🤷‍♂️ Maintainer of Russian docs on PHP, React, Kubernetes and much more 🧐 Docusaurus founder and now ever grateful Docusaurus cheerleader to those who actually write code for it. , devto: Dev.to, }}> { 'React lover since 2014. Freelance, helping Facebook ship Docusaurus v2. He writes regularly, on his {website} and {devto}.' } Student from Shanghai, China. Enthusiastic open-source project creator, but never actually works hard on those projects he created. 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.
); } export function HonoraryAlumniTeamRow(): JSX.Element { return (
Maintainer @docusaurus · 🔥🔥🔥 🏻‍🌾 Work in progress React developer, maintains Docusaurus, writes docs and spams this world with many websites.
); } export function StudentFellowsTeamRow(): JSX.Element { return (
website ), }}> { 'Fullstack developer who loves to code and try new technologies. In his free time, he contributes to open source, writes blog posts on his {websiteLink} and watches Anime.' } Developer and Creative, trying to gain the skills to build whatever he can think of. her blog ), spotifyLink: ( Spotify playlists ), }}> { '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 {blogLink} about her experiences, cooking, and creating {spotifyLink}.' } website ), samLangLink: ( programming language ), miniReactLink: ( mini React ), }}> { 'Sam started programming in 2011 and built his {websiteLink} in 2015. He is interested in programming languages, dev infra and web development, and has built his own {samLangLink} and {miniReactLink}.' } Open-source enthusiast who aims to become as awesome as the other humans on this page. Working on Docusaurus brought him closer to his goal. 🌱 Fullstack web developer who loves learning new technologies and applying them! Loves contributing to open source as well as writing content articles and tutorials.
); }