-
Notifications
You must be signed in to change notification settings - Fork 509
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6225b8e
commit f1a2643
Showing
10 changed files
with
1,058 additions
and
812 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
/** | ||
* 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 from 'react'; | ||
import Layout from '@theme/Layout'; | ||
|
||
import Link from '@docusaurus/Link'; | ||
import useBaseUrl from '@docusaurus/useBaseUrl'; | ||
|
||
function Help() { | ||
return ( | ||
<Layout permalink="/help" description="Docusaurus 2 Help page"> | ||
<div className="container margin-vert--xl"> | ||
<div className="text--center margin-bottom--xl"> | ||
<h1>Need Help?</h1> | ||
<p> | ||
If you need help with TSDX, you can try one of the mechanisms below. | ||
</p> | ||
</div> | ||
<div className="row"> | ||
<div className="col"> | ||
<h2>Browse the docs</h2> | ||
<p> | ||
Learn more about Docusaurus using the{' '} | ||
<Link to={useBaseUrl('docs/get-started')}> | ||
official documentation. | ||
</Link> | ||
</p> | ||
</div> | ||
<div className="col"> | ||
<h2>Twitter</h2> | ||
<p> | ||
You can follow and contact the maintainers on Twitter{' '} | ||
<a | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
href="https://twitter.com/jaredpalmer" | ||
> | ||
@jaredpalmer | ||
</a>{' '} | ||
and{' '} | ||
<a | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
href="https://twitter.com/swyx" | ||
> | ||
@swyx | ||
</a> | ||
. | ||
</p> | ||
</div> | ||
<div className="col"> | ||
<h2>GitHub</h2> | ||
<p> | ||
At our{' '} | ||
<a | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
href="https://github.com/jaredpalmer/tsdx" | ||
> | ||
GitHub repo | ||
</a>{' '} | ||
Browse and submit{' '} | ||
<a | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
href="https://github.com/jaredpalmer/tsdx/issues" | ||
> | ||
issues | ||
</a>{' '} | ||
or{' '} | ||
<a | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
href="https://github.com/jaredpalmer/tsdx/pulls" | ||
> | ||
pull requests | ||
</a>{' '} | ||
for bugs you find or any new features you may want implemented. Be | ||
sure to also check out our{' '} | ||
<a | ||
target="_blank" | ||
rel="noreferrer noopener" | ||
href="https://github.com/jaredpalmer/tsdx/blob/master/CONTRIBUTING.md" | ||
> | ||
contributing guide | ||
</a> | ||
. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</Layout> | ||
); | ||
} | ||
|
||
export default Help; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.