Skip to content

Commit 4126e2a

Browse files
sdirixlucas-koehler
authored andcommitted
Add community page
1 parent 732a188 commit 4126e2a

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

content/community/community.mdx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
id: community
3+
title: Community
4+
description: JSON Forms Community Links
5+
slug: /
6+
---
7+
8+
## Forum
9+
10+
In case you have a question or want to share an awesome JSON Forms based project with the world, feel free to post it in our [JSON Forms Discourse](https://jsonforms.discourse.group/).
11+
12+
## Community Projects
13+
14+
The following projects were developed and are maintained by the JSON Forms community.
15+
16+
:::info Note
17+
18+
The following links are provided for informational purposes only.
19+
They do not constitute an endorsement or an approval by EclipseSource of any of the products, services or opinions of the corporation or organization or individual.
20+
EclipseSource bears no responsibility for the accuracy, legality or content of the external site or for that of subsequent links.
21+
22+
:::
23+
24+
- [`fig-tree-evaluator` integrated with JSON Forms](https://github.com/CarlosNZ/jsonforms-with-figtree-demo) by CarlosNZ
25+
- [React Spectrum renderers](https://github.com/headwirecom/jsonforms-react-spectrum-renderers) by headwire.com
26+
- [React Native POC](https://github.com/RyanLinXiang/JsonFormsRN) by Lin Xiang
27+
28+
You would like to see your project listed here?
29+
Simply open a PR against the [JSON Forms website repository](https://github.com/eclipsesource/jsonforms2-website/blob/master/content/community/community.mdx)!

docusaurus.config.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ module.exports = {
4848
label: 'FAQ',
4949
position: 'left',
5050
},
51+
{
52+
to: 'community',
53+
label: 'Community',
54+
position: 'left'
55+
},
5156
{
5257
to: 'news',
5358
label: 'News',
@@ -163,6 +168,15 @@ module.exports = {
163168
sidebarPath: require.resolve('./src/sidebars/faq.js'),
164169
},
165170
],
171+
[
172+
'@docusaurus/plugin-content-docs',
173+
{
174+
id: 'community',
175+
path: 'content/community',
176+
routeBasePath: 'community',
177+
sidebarPath: require.resolve('./src/sidebars/community.js'),
178+
},
179+
],
166180
[
167181
'@docusaurus/plugin-content-blog',
168182
{

src/sidebars/community.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module.exports = {
2+
};

0 commit comments

Comments
 (0)