sidebarsnotes.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. module.exports = {
  2. notes: [
  3. {
  4. type:'doc',
  5. id: 'index',
  6. },
  7. {
  8. type: 'category',
  9. label: 'Art',
  10. collapsible: true,
  11. link: {
  12. type:'doc',
  13. id:'art/art',
  14. },
  15. items: [
  16. {
  17. type:'doc',
  18. id:'art/design',
  19. },
  20. {
  21. type: 'category',
  22. label: 'Education',
  23. collapsible: true,
  24. link: {
  25. type:'doc',
  26. id:'art/education/education',
  27. },
  28. items: [
  29. 'art/education/visual',
  30. 'art/education/design',
  31. 'art/education/media',
  32. ],
  33. },
  34. {
  35. type:'doc',
  36. id:'art/studio',
  37. }
  38. ],
  39. },
  40. {
  41. type:'category',
  42. label:'Dogs',
  43. collapsible: true,
  44. link: {
  45. type:'doc',
  46. id:'dogs/dogs',
  47. },
  48. items: [
  49. 'dogs/iris',
  50. ]
  51. },
  52. {
  53. type:'category',
  54. label:'Garden',
  55. collapsible: true,
  56. link: {
  57. type:'doc',
  58. id:'garden/garden',
  59. },
  60. items: [
  61. 'garden/mushroom',
  62. ]
  63. },
  64. {
  65. type:'doc',
  66. id:'golf',
  67. },
  68. {
  69. type:'doc',
  70. id:'health',
  71. },
  72. {
  73. type:'category',
  74. label:'House',
  75. collapsible: true,
  76. link: {
  77. type:'doc',
  78. id:'house/house',
  79. },
  80. items: [
  81. 'house/build',
  82. ]
  83. },
  84. {
  85. type:'doc',
  86. id:'tennis',
  87. },
  88. {
  89. type:'doc',
  90. id:'travel',
  91. },
  92. {
  93. type: 'category',
  94. label: 'Work',
  95. collapsible: true,
  96. link: {
  97. type:'doc',
  98. id:'work/work',
  99. },
  100. items: [
  101. {
  102. type:'doc',
  103. id:'work/clients',
  104. },
  105. {
  106. type: 'category',
  107. label: 'Projects',
  108. collapsible: true,
  109. link: {
  110. type:'doc',
  111. id:'work/projects/index',
  112. },
  113. items: [
  114. 'work/projects/ai',
  115. 'work/projects/game',
  116. 'work/projects/gzet',
  117. 'work/projects/ham',
  118. 'work/projects/juryd',
  119. 'work/projects/pants',
  120. 'work/projects/zw',
  121. ],
  122. },
  123. {
  124. type:'doc',
  125. id:'work/wealth',
  126. },
  127. ],
  128. },
  129. ],
  130. };