123456789101112131415161718192021222324252627282930313233343536 |
- module.exports = {
- notes: [
- {
- type:'doc',
- id: 'index',
- },
- {
- type:'doc',
- id:'TOC',
- },
- {
- type: 'category',
- label: 'Projects',
- collapsible: false,
- items: [
- 'projects/dw',
- 'projects/gzet',
- 'projects/juryd',
- 'projects/pants',
- 'projects/zw',
- ],
- },
- {
- type: 'category',
- label: 'Space',
- items: [
- ],
- },
- {
- type: 'category',
- label: 'Time',
- items: [
- ],
- },
- ],
- };
|