123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- module.exports = {
- lists: [
- {
- type:'doc',
- id: 'index',
- },
- {
- type: 'doc',
- id: 'next',
- },
- {
- type: 'category',
- label: 'Art',
- collapsible: false,
- items: [
- 'art',
- 'film',
- 'lit',
- 'music',
- {
- type: 'doc',
- label: '- Playlists',
- id: 'music_playlist',
- },
- ],
- },
- {
- type: 'doc',
- id: 'concepts',
- },
- {
- type: 'doc',
- id: 'places',
- },
- {
- type: 'doc',
- id: 'people',
- },
- {
- type: 'doc',
- id: 'things',
- },
- {
- type: 'doc',
- id: 'trivia',
- },
- {
- type: 'doc',
- id: 'quotes',
- },
- {
- type: 'doc',
- id: 'words',
- },
- {
- type: 'doc',
- id: 'lists',
- },
- ],
- };
|