From 840a43a8317c373d586eed0f72e2be3c925ae357 Mon Sep 17 00:00:00 2001 From: Stefan Dirix Date: Mon, 23 Jan 2023 17:45:19 +0100 Subject: [PATCH 1/2] Add description for support page --- content/pages/support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/pages/support.js b/content/pages/support.js index 0870dcfd..375454fd 100644 --- a/content/pages/support.js +++ b/content/pages/support.js @@ -7,7 +7,7 @@ function Support() { return ( + description="JSON Forms Support Options">
From 6dbbda4264a8fc9bba2ec4960a8ec5df7a119eb2 Mon Sep 17 00:00:00 2001 From: Stefan Dirix Date: Mon, 23 Jan 2023 17:45:27 +0100 Subject: [PATCH 2/2] Add community page --- content/community/community.mdx | 29 +++++++++++++++++++++++++++++ docusaurus.config.js | 14 ++++++++++++++ src/sidebars/community.js | 2 ++ 3 files changed, 45 insertions(+) create mode 100644 content/community/community.mdx create mode 100644 src/sidebars/community.js diff --git a/content/community/community.mdx b/content/community/community.mdx new file mode 100644 index 00000000..818ad39f --- /dev/null +++ b/content/community/community.mdx @@ -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)! diff --git a/docusaurus.config.js b/docusaurus.config.js index 8d520e75..1aa6035f 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -48,6 +48,11 @@ module.exports = { label: 'FAQ', position: 'left', }, + { + to: 'community', + label: 'Community', + position: 'left' + }, { to: 'news', label: 'News', @@ -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', { diff --git a/src/sidebars/community.js b/src/sidebars/community.js new file mode 100644 index 00000000..7be35b6b --- /dev/null +++ b/src/sidebars/community.js @@ -0,0 +1,2 @@ +module.exports = { +};