sidebarsnotes.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. },
  36. {
  37. type:'category',
  38. label:'Dogs',
  39. collapsible: true,
  40. link: {
  41. type:'doc',
  42. id:'dogs/dogs',
  43. },
  44. items: [
  45. 'dogs/iris',
  46. ]
  47. },
  48. {
  49. type:'category',
  50. label:'Garden',
  51. collapsible: true,
  52. link: {
  53. type:'doc',
  54. id:'garden/garden',
  55. },
  56. items: [
  57. 'garden/mushroom',
  58. ]
  59. },
  60. {
  61. type:'doc',
  62. id:'golf',
  63. },
  64. {
  65. type:'category',
  66. label:'Health',
  67. collapsible: true,
  68. link: {
  69. type:'doc',
  70. id:'health/health',
  71. },
  72. items: [
  73. 'health/diet',
  74. 'health/mental',
  75. ]
  76. },
  77. {
  78. type:'category',
  79. label:'House',
  80. collapsible: true,
  81. link: {
  82. type:'doc',
  83. id:'house/house',
  84. },
  85. items: [
  86. 'house/helene',
  87. 'house/studio',
  88. 'house/bath',
  89. 'house/build',
  90. ]
  91. },
  92. {
  93. type:'doc',
  94. id:'ideas',
  95. },
  96. {
  97. type:'doc',
  98. id:'tennis',
  99. },
  100. {
  101. type:'doc',
  102. id:'travel',
  103. },
  104. {
  105. type: 'category',
  106. label: 'Work',
  107. collapsible: true,
  108. link: {
  109. type:'doc',
  110. id:'work/work',
  111. },
  112. items: [
  113. {
  114. type:'doc',
  115. id:'work/clients',
  116. },
  117. {
  118. type: 'category',
  119. label: 'Projects',
  120. collapsible: true,
  121. link: {
  122. type:'doc',
  123. id:'work/projects/index',
  124. },
  125. items: [
  126. 'work/projects/ai',
  127. 'work/projects/game',
  128. 'work/projects/gzet',
  129. 'work/projects/ham',
  130. 'work/projects/juryd',
  131. 'work/projects/pants',
  132. 'work/projects/zw',
  133. ],
  134. },
  135. {
  136. type: 'category',
  137. label: 'Wealth',
  138. collapsible: true,
  139. link: {
  140. type:'doc',
  141. id:'work/wealth',
  142. },
  143. items: [
  144. 'work/stocks',
  145. 'work/trades',
  146. ],
  147. },
  148. ],
  149. },
  150. ],
  151. };