From ef4ed48d840d41fd79613c740fe156ecd584b5f2 Mon Sep 17 00:00:00 2001 From: milliehartnt123 <108491788+milliehartnt123@users.noreply.github.com> Date: Thu, 13 Nov 2025 14:28:39 -0500 Subject: [PATCH] Refactor sidebar to include component management section Added new component management section to include registering, creating, and updating a component. Also added the new search catalog file. All changes are under Using Backstage. Signed-off-by: milliehartnt123 <108491788+milliehartnt123@users.noreply.github.com> --- microsite/sidebars.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/microsite/sidebars.ts b/microsite/sidebars.ts index 9a4f03620f..d54f838c28 100644 --- a/microsite/sidebars.ts +++ b/microsite/sidebars.ts @@ -55,8 +55,16 @@ export default { label: 'Using Backstage', items: [ 'getting-started/logging-in', - 'getting-started/register-a-component', - 'getting-started/create-a-component', + { + type: 'category', + label: 'Managing Components', + items: [ + 'getting-started/register-a-component', + 'getting-started/create-a-component', + 'getting-started/update-a-component', + ], + }, + 'getting-started/search-catalog', ], }, 'overview/support',