Files
medusa-store/www/apps/cloud/sidebar.mjs
2025-06-12 18:09:51 +03:00

30 lines
533 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: "Organization",
path: "/organization",
},
],
},
],
},
]