diff --git a/website/docs/support.md b/website/docs/support.md new file mode 100644 index 0000000000..f58b73dca0 --- /dev/null +++ b/website/docs/support.md @@ -0,0 +1,31 @@ +--- +id: support +title: Support +--- + +Docusaurus has a community of thousands of developers. + +On this page we've listed some Docusaurus-related communities that you can be a part of; see the other pages in this section for additional online and in-person learning materials. + +Before participating in Docusaurus' communities, [please read our Code of Conduct](https://engineering.fb.com/codeofconduct/). We have adopted the [Contributor Covenant](https://www.contributor-covenant.org/) and we expect that all community members adhere to the guidelines within. + +## Stack Overflow + +Stack Overflow is a popular forum to ask code-level questions or if you're stuck with a specific error. Read through the [existing questions](https://stackoverflow.com/questions/tagged/docusaurus) tagged with **docusaurus** or [ask your own](https://stackoverflow.com/questions/ask?tags=docusaurus)! + +## Discussion forums + +There are many online forums which are a great place for discussion about best practices and application architecture as well as the future of Docusaurus. If you have an answerable code-level question, Stack Overflow is usually a better fit. + +- [Docusaurus online chat](https://discord.gg/docusaurus) + - [#docusaurus-2-dogfooding](https://discord.gg/7wjJ9yH) for user help + - [#docusaurus-2-dev](https://discord.gg/6g6ASPA) for contributing help +- [Reddit's Docusaurus community](https://www.reddit.com/r/docusaurus/) + +## Feature requests + +For new feature requests, you can create a post on our [Canny board](/feedback), which is a handy tool for roadmapping and allows for sorting by upvotes, which gives the core team a better indicator of what features are in high demand, as compared to GitHub issues which are harder to triage. Refrain from making a Pull Request for new features (especially large ones) as someone might already be working on it or will be part of our roadmap. Talk to us first! + +## News + +For the latest news about Docusaurus, [follow **@docusaurus** on Twitter](https://twitter.com/docusaurus) and the [official Docusaurus blog](/blog) on this website. diff --git a/website/docs/team.md b/website/docs/team.md new file mode 100644 index 0000000000..cd88fc1d91 --- /dev/null +++ b/website/docs/team.md @@ -0,0 +1,33 @@ +--- +id: team +title: Team +--- + +## Meet the Docusaurus Team + +- Alexey Pyltsyn +- Fanny Batista Vieira +- Joel Marcey +- Yangshun Tay + +## Honorary Alumni + +- Endilie Yacop Sucipto +- Wei Gao + +## Acknowledgements + +React was originally created by Joel Marcey. Today, Docusaurus has a few hundred open source contributors. We’d like to recognize a few people who have made significant contributions to Docusaurus and its documentation in the past and have helped maintain them over the years: + +- Amy Lam +- Cheng Lou +- Christine Abernathy +- Christopher Chedeau +- Elvis Wolcott +- Eric Nakagawa +- Fienny Angelina +- Frank Li +- Hector Ramos +- Ramón Lamana +- Ricky Vetter +- Sam Chou diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 7e96fa74e5..8bb1183f7c 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -112,7 +112,7 @@ module.exports = { }, {to: 'blog', label: 'Blog', position: 'left'}, {to: 'showcase', label: 'Showcase', position: 'left'}, - {to: 'feedback', label: 'Feedback', position: 'left'}, + {to: 'docs/next/support', label: 'Community', position: 'left'}, { to: 'versions', label: `v${versions[0]}`, diff --git a/website/sidebars.js b/website/sidebars.js index 2b85d7e827..ec555c76a0 100644 --- a/website/sidebars.js +++ b/website/sidebars.js @@ -7,12 +7,7 @@ module.exports = { docs: { - Docusaurus: [ - 'introduction', - 'design-principles', - 'contributing', - 'resources', - ], + Docusaurus: ['introduction', 'design-principles', 'contributing'], 'Getting Started': ['installation', 'configuration'], Guides: [ 'creating-pages', @@ -35,4 +30,19 @@ module.exports = { 'theme-classic', ], }, + community: [ + 'support', + 'team', + 'resources', + { + type: 'link', + href: '/showcase', + label: 'Showcase', + }, + { + type: 'link', + href: '/feedback', + label: 'Feedback', + }, + ], }; diff --git a/website/src/pages/help.js b/website/src/pages/help.js deleted file mode 100644 index bd84ae9808..0000000000 --- a/website/src/pages/help.js +++ /dev/null @@ -1,116 +0,0 @@ -/** - * 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, {useEffect} from 'react'; -import Layout from '@theme/Layout'; - -import Link from '@docusaurus/Link'; -import useBaseUrl from '@docusaurus/useBaseUrl'; - -function Help() { - return ( - -
-
-

Need Help?

-

- If you need help with Docusaurus 2, you can try one of the - mechanisms below. -

-
-
-
-

Browse the docs

-

- Learn more about Docusaurus using the{' '} - - official documentation - -

-
-
-

Discord

-

- You can join the conversation on{' '} - - Discord - {' '} - on one of our two text channels:{' '} - - #docusaurus-2-dogfooding - {' '} - for user help and{' '} - - #docusaurus-2-dev - {' '} - for contributing help. -

-
-
-

Twitter

-

- You can follow and contact us on{' '} - - Twitter - - . -

-
-
-

GitHub

-

- At our{' '} - - GitHub repo - {' '} - Browse and submit{' '} - - issues - {' '} - or{' '} - - pull requests - {' '} - for bugs you find or any new features you may want implemented. Be - sure to also check out our{' '} - - contributing guide - - . -

-
-
-
-
- ); -} - -export default Help;