123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- module.exports = {
- notes: [
- {
- type:'doc',
- id: 'index',
- },
- {
- type: 'category',
- label: 'Art',
- collapsible: true,
- link: {
- type:'doc',
- id:'art/art',
- },
- items: [
- {
- type: 'category',
- label: 'Education',
- collapsible: true,
- link: {
- type:'doc',
- id:'art/education',
- },
- items: [
- 'art/visual',
- 'art/design',
- 'art/media',
- ],
- },
- ],
- },
- {
- type:'category',
- label:'Dogs',
- collapsible: true,
- link: {
- type:'doc',
- id:'dogs/dogs',
- },
- items: [
- 'dogs/iris',
- ]
- },
- {
- type:'category',
- label:'Garden',
- collapsible: true,
- link: {
- type:'doc',
- id:'garden/garden',
- },
- items: [
- 'garden/mushroom',
- ]
- },
- {
- type:'doc',
- id:'golf',
- },
- {
- type:'doc',
- id:'health',
- },
- {
- type:'category',
- label:'House',
- collapsible: true,
- link: {
- type:'doc',
- id:'house/house',
- },
- items: [
- 'house/build',
- ]
- },
- {
- type:'doc',
- id:'tennis',
- },
- {
- type:'doc',
- id:'travel',
- },
- {
- type: 'category',
- label: 'Work',
- collapsible: true,
- link: {
- type:'doc',
- id:'work/work',
- },
- items: [
- {
- type:'doc',
- id:'work/clients',
- },
- {
- type:'doc',
- id:'work/design',
- },
- {
- type: 'category',
- label: 'Projects',
- collapsible: true,
- link: {
- type:'doc',
- id:'work/projects/index',
- },
- items: [
- 'work/projects/ai',
- 'work/projects/game',
- 'work/projects/gzet',
- 'work/projects/ham',
- 'work/projects/juryd',
- 'work/projects/pants',
- 'work/projects/zw',
- ],
- },
- {
- type:'doc',
- id:'work/wealth',
- },
- ],
- },
- ],
- };
|