1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22export interface DocItem { title: string; path: string; file: string; } export interface DocSection { title: string; items: DocItem[]; } export const docsNav: DocSection[] = [ { title: 'Overview', items: [ { title: 'How It Works', path: '/docs/how-it-works', file: 'how-it-works' }, { title: 'Getting Started', path: '/docs/getting-started', file: 'getting-started' }, { title: 'Sources', path: '/docs/sources', file: 'sources' }, ], }, ];