Skip to content

Commit

Permalink
add new page for user docs
Browse files Browse the repository at this point in the history
Signed-off-by: Max Wolfs <mail@maxwolfs.com>
  • Loading branch information
maxwolfs committed Oct 7, 2024
1 parent 9c22cda commit 516c077
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
26 changes: 24 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
{
Expand Down Expand Up @@ -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' },
{
Expand Down Expand Up @@ -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'
]
})
]
Expand Down
7 changes: 7 additions & 0 deletions user-docs/index.md
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 516c077

Please sign in to comment.