Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions content/community/community.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
id: community
title: Community
description: JSON Forms Community Links
slug: /
---

## Forum

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/).

## Community Projects

The following projects were developed and are maintained by the JSON Forms community.

:::info Note

The following links are provided for informational purposes only.
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.
EclipseSource bears no responsibility for the accuracy, legality or content of the external site or for that of subsequent links.

:::

- [`fig-tree-evaluator` integrated with JSON Forms](https://github.com/CarlosNZ/jsonforms-with-figtree-demo) by CarlosNZ
- [React Spectrum renderers](https://github.com/headwirecom/jsonforms-react-spectrum-renderers) by headwire.com
- [React Native POC](https://github.com/RyanLinXiang/JsonFormsRN) by Lin Xiang

You would like to see your project listed here?
Simply open a PR against the [JSON Forms website repository](https://github.com/eclipsesource/jsonforms2-website/blob/master/content/community/community.mdx)!
2 changes: 1 addition & 1 deletion content/pages/support.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function Support() {
return (
<Layout
title="Professional Support"
description="Description will go into a meta tag in <head />">
description="JSON Forms Support Options">
<div className='support__main' style={{ justifyContent: 'center', alignItems: 'center', display: 'flex', flexDirection: 'column' }}>
<div className={styles.comparison_container} style={{display: 'flex', flexWrap: 'wrap', justifyContent: 'center'}}>
<div className={styles.community} style={{flex: '1'}}>
Expand Down
14 changes: 14 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ module.exports = {
label: 'FAQ',
position: 'left',
},
{
to: 'community',
label: 'Community',
position: 'left'
},
{
to: 'news',
label: 'News',
Expand Down Expand Up @@ -163,6 +168,15 @@ module.exports = {
sidebarPath: require.resolve('./src/sidebars/faq.js'),
},
],
[
'@docusaurus/plugin-content-docs',
{
id: 'community',
path: 'content/community',
routeBasePath: 'community',
sidebarPath: require.resolve('./src/sidebars/community.js'),
},
],
[
'@docusaurus/plugin-content-blog',
{
Expand Down
2 changes: 2 additions & 0 deletions src/sidebars/community.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
module.exports = {
};