Skip to content

Commit 48f7775

Browse files
committed
refactor(sidebar): update sidebar structure and links
- Remove nested structure for "Start Here" section - Reorder sidebar items for better organization - Update links to be more concise and consistent - Add "Core Philosophy" section (previously commented out) - Rename "Deployment Guides" to "Deployment" for brevity
1 parent ff20633 commit 48f7775

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

astro.config.mjs

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,10 @@ export default defineConfig({
1717
},
1818
],
1919
sidebar: [
20-
{
21-
label: 'Start Here',
22-
items: [
23-
{ label: 'Introduction', link: '/start-here/introduction' },
24-
{ label: 'Local Setup', link: '/start-here/local-setup' },
25-
// { label: 'Core Philosophy', link: '/start-here/core-philosophy' },
26-
{ label: 'Deployment Guides', link: '/start-here/deployment-guides' },
27-
],
28-
},
20+
{ label: 'Introduction', link: 'introduction' },
21+
{ label: 'Core Philosophy', link: 'core-philosophy' },
22+
{ label: 'Local Setup', link: 'local-setup' },
23+
{ label: 'Deployment', link: 'deployment' },
2924
{
3025
label: 'API Server',
3126
collapsed: true,

0 commit comments

Comments
 (0)