Files
medusa-store/www/apps/cloud/sidebar.mjs
Shahed Nasser 5317f16d54 docs: add cloud database guides (#12758)
* docs: add cloud database guides

* fixes

* fixes

* small fix
2025-06-17 18:54:27 +03:00

69 lines
1.4 KiB
JavaScript

/** @type {import('types').Sidebar.RawSidebar[]} */
export const sidebar = [
{
sidebar_id: "cloud",
title: "Cloud",
items: [
{
type: "link",
path: "/",
title: "Introduction",
},
{
type: "separator",
},
{
type: "category",
title: "Basics",
initialOpen: true,
children: [
{
type: "link",
title: "Organizations",
path: "/organizations",
},
{
type: "link",
title: "Projects",
path: "/projects",
},
{
type: "link",
title: "Environments",
path: "/environments",
},
{
type: "link",
title: "Deployments",
path: "/deployments",
},
],
},
{
type: "category",
title: "Resources",
initialOpen: true,
children: [
{
type: "link",
title: "Database",
path: "/database",
},
],
},
{
type: "category",
title: "Monitoring & Support",
initialOpen: true,
children: [
{
type: "link",
title: "Notifications",
path: "/notifications",
},
],
},
],
},
]