Skip to content

Commit

Permalink
[nav.ts] New sidebar sections: built-ins and add-ons (#5213)
Browse files Browse the repository at this point in the history
Co-authored-by: Elian ☕️ <[email protected]>
Co-authored-by: Wassim <[email protected]>
Co-authored-by: Nate Moore <[email protected]>
  • Loading branch information
4 people authored Oct 27, 2023
1 parent 9e49a16 commit bc3c917
Showing 1 changed file with 26 additions and 30 deletions.
56 changes: 26 additions & 30 deletions src/i18n/en/nav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,56 +46,52 @@ export default [
},
{ text: 'Pages', slug: 'core-concepts/astro-pages', key: 'core-concepts/astro-pages' },
{ text: 'Layouts', slug: 'core-concepts/layouts', key: 'core-concepts/layouts' },

{ text: 'Recipes', header: true, type: 'learn', key: 'examples' },
{ text: 'Migrate to Astro', slug: 'guides/migrate-to-astro', key: 'guides/migrate-to-astro' },
{ text: 'Connect a CMS', slug: 'guides/cms', key: 'guides/cms' },
{ text: 'Add backend services', slug: 'guides/backend', key: 'guides/backend' },
{ text: 'Add integrations', slug: 'guides/integrations-guide', key: 'guides/integrations-guide' },
{ text: 'Deploy your site', slug: 'guides/deploy', key: 'guides/deploy' },
{ text: 'More recipes', slug: 'recipes', key: 'guides/recipes' },

{ text: 'Guides', header: true, type: 'learn', key: 'features' },
{
text: 'Astro Template Syntax',
slug: 'core-concepts/astro-syntax',
key: 'core-concepts/astro-syntax',
},
{
text: 'UI Frameworks',
slug: 'core-concepts/framework-components',
key: 'core-concepts/framework-components',
},
{ text: 'Routing', slug: 'core-concepts/routing', key: 'core-concepts/routing' },
{ text: 'Markdown & MDX', slug: 'guides/markdown-content', key: 'guides/markdown-content' },

{ text: 'Built-ins', header: true, type: 'learn', key: 'builtins' },
{
text: 'Content Collections',
slug: 'guides/content-collections',
key: 'guides/content-collections',
},
{
text: 'Scripts & Event Handling',
slug: 'guides/client-side-scripts',
key: 'guides/client-side-scripts',
text: 'View Transitions',
slug: 'guides/view-transitions',
key: 'guides/view-transitions',
},

{ text: 'Add-ons', header: true, type: 'learn', key: 'addons' },
{ text: 'Add integrations', slug: 'guides/integrations-guide', key: 'guides/integrations-guide' },
{
text: 'UI Frameworks',
slug: 'core-concepts/framework-components',
key: 'core-concepts/framework-components',
},
{ text: 'SSR Adapters', slug: 'guides/server-side-rendering', key: 'guides/server-side-rendering' },

{ text: 'Recipes', header: true, type: 'learn', key: 'examples' },
{ text: 'Migrate to Astro', slug: 'guides/migrate-to-astro', key: 'guides/migrate-to-astro' },
{ text: 'Connect a CMS', slug: 'guides/cms', key: 'guides/cms' },
{ text: 'Add backend services', slug: 'guides/backend', key: 'guides/backend' },
{ text: 'Deploy your site', slug: 'guides/deploy', key: 'guides/deploy' },
{ text: 'More recipes', slug: 'recipes', key: 'guides/recipes' },

{ text: 'Guides', header: true, type: 'learn', key: 'features' },
{ text: 'Routing', slug: 'core-concepts/routing', key: 'core-concepts/routing' },
{ text: 'Markdown', slug: 'guides/markdown-content', key: 'guides/markdown-content' },
{ text: 'Scripts & Event Handling', slug: 'guides/client-side-scripts', key: 'guides/client-side-scripts'},
{ text: 'CSS & Styling', slug: 'guides/styling', key: 'guides/styling' },
{ text: 'Images', slug: 'guides/images', key: 'guides/images' },
{ text: 'Fonts', slug: 'guides/fonts', key: 'guides/fonts' },
{ text: 'Imports', slug: 'guides/imports', key: 'guides/imports' },
{
text: 'Server-side Rendering (SSR)',
slug: 'guides/server-side-rendering',
key: 'guides/server-side-rendering',
},
{ text: 'Endpoints', slug: 'core-concepts/endpoints', key: 'core-concepts/endpoints' },
{ text: 'Data Fetching', slug: 'guides/data-fetching', key: 'guides/data-fetching' },
{ text: 'Middleware', slug: 'guides/middleware', key: 'guides/middleware' },
{ text: 'Testing', slug: 'guides/testing', key: 'guides/testing' },
{
text: 'View Transitions',
slug: 'guides/view-transitions',
key: 'guides/view-transitions',
},
{ text: 'Troubleshooting', slug: 'guides/troubleshooting', key: 'guides/troubleshooting' },

{ text: 'Configuration', header: true, type: 'learn', key: 'configuration' },
Expand Down

0 comments on commit bc3c917

Please sign in to comment.