Files
medusa-store/www/apps/cloud/sidebar.mjs
Shahed Nasser aa1cadcb29 docs: add cloud projects documentation (#12730)
* docs: add cloud projects documentation

* fixes

* more fixes

* fix details about configurations

* last fixes

* small fix

* remove environments page
2025-06-13 16:22:30 +03:00

35 lines
648 B
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",
},
],
},
],
},
]