diff --git a/docusaurus.config.js b/docusaurus.config.js index 1ea8281502..1c8ed45670 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -81,6 +81,16 @@ const config = { // ... other options } ], + [ + '@docusaurus/plugin-content-docs', + { + id: 'user-docs', + path: 'user-docs', + routeBasePath: 'user-docs', + sidebarPath: require.resolve('./sidebarsUserDocs.js') + // ... other options + } + ], [ '@docusaurus/plugin-content-docs', { @@ -120,6 +130,11 @@ const config = { label: 'For Contributors', position: 'left' }, + { + to: '/user-docs', + label: 'For Users', + position: 'left' + }, { to: '/community', label: 'Community', position: 'left' }, { to: '/docs/faq', label: 'FAQ', position: 'left' }, { @@ -194,12 +209,19 @@ const config = { // @ts-ignore ({ hashed: true, - docsDir: ['docs', 'community', 'standards', 'contributor-docs'], + docsDir: [ + 'docs', + 'community', + 'standards', + 'contributor-docs', + 'user-docs' + ], docsRouteBasePath: [ 'docs', 'community', 'standards', - 'contributor-docs' + 'contributor-docs', + 'user-docs' ] }) ] diff --git a/user-docs/index.md b/user-docs/index.md new file mode 100644 index 0000000000..c7ad78afbf --- /dev/null +++ b/user-docs/index.md @@ -0,0 +1,7 @@ +# Introduction + +## Welcome to the User Documentation of the Sovereign Cloud Stack (SCS) + +In this section, users will find helpful information and practical guides for working with SCS clouds. We provide insights into various application use cases, migration tutorials between different SCS cloud service providers, and showcase ways to communicate remotely with your cloud without a user interface. + +Discover best practices to make the most of your cloud, from introductions to specific applications to advanced use cases. Stay tuned for upcoming content designed to simplify your cloud experience.