mirror of
https://github.com/zoriya/v10.git
synced 2026-08-11 08:29:47 +00:00
17 lines
397 B
TypeScript
17 lines
397 B
TypeScript
import type { Sidebar } from '@/types/docs';
|
|
|
|
export const sidebar: Sidebar = [
|
|
{
|
|
sidebarLabel: 'Concepts',
|
|
contents: [
|
|
{ slug: 'concepts/everyone' },
|
|
{ slug: 'concepts/react-only', frameworks: ['react'] },
|
|
{ slug: 'concepts/tailwind-only', styles: ['tailwind'] },
|
|
],
|
|
},
|
|
{
|
|
sidebarLabel: 'How-To Guides',
|
|
contents: [{ slug: 'how-to/everyone' }],
|
|
},
|
|
];
|