mirror of
https://github.com/zoriya/v10.git
synced 2026-08-12 17:09:55 +00:00
26 lines
654 B
TypeScript
26 lines
654 B
TypeScript
import type { Sidebar } from '@/types/docs';
|
|
|
|
export const sidebar: Sidebar = [
|
|
{ sidebarLabel: 'Writing guides', slug: 'how-to/write-guides', devOnly: true },
|
|
{ slug: 'concepts/coming-soon' },
|
|
// {
|
|
// sidebarLabel: 'Getting started',
|
|
// contents: [
|
|
// { slug: 'concepts/everyone' },
|
|
// ],
|
|
// },
|
|
// {
|
|
// sidebarLabel: 'Concepts',
|
|
// contents: [
|
|
// { slug: 'concepts/react-only', frameworks: ['react'] },
|
|
// { slug: 'concepts/tailwind-only', styles: ['tailwind'] },
|
|
// ],
|
|
// },
|
|
// {
|
|
// sidebarLabel: 'How-To Guides',
|
|
// contents: [
|
|
// { slug: 'how-to/everyone' },
|
|
// ],
|
|
// },
|
|
];
|