diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index ee1965a80b..b89e26b769 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -92,6 +92,10 @@ module.exports = { label: 'Installation', to: 'docs/installation', }, + { + label: 'Migration from v1 to v2', + to: 'docs/migration-from-v1-to-v2', + }, ], }, { @@ -109,6 +113,10 @@ module.exports = { label: 'Discord', href: 'https://discordapp.com/invite/docusaurus', }, + { + label: 'Help', + to: 'help', + }, ], }, { diff --git a/website/src/pages/help.js b/website/src/pages/help.js new file mode 100644 index 0000000000..1e1525bbad --- /dev/null +++ b/website/src/pages/help.js @@ -0,0 +1,116 @@ +/** + * Copyright (c) 2017-present, Facebook, Inc. + * + * 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 withBaseUrl from '@docusaurus/withBaseUrl'; + +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;