sidebarsnotes.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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. 'art/design',
  17. {
  18. type: 'category',
  19. label: 'Education',
  20. collapsible: true,
  21. link: {
  22. type:'doc',
  23. id:'art/education/education',
  24. },
  25. items: [
  26. 'art/education/visual',
  27. 'art/education/design',
  28. 'art/education/media',
  29. ],
  30. },
  31. 'art/paint',
  32. 'art/palette',
  33. ],
  34. },
  35. {
  36. type:'doc',
  37. id:'autos',
  38. },
  39. {
  40. type:'category',
  41. label:'Dogs',
  42. collapsible: true,
  43. link: {
  44. type:'doc',
  45. id:'dogs/dogs',
  46. },
  47. items: [
  48. 'dogs/iris',
  49. ]
  50. },
  51. {
  52. type:'category',
  53. label:'Garden',
  54. collapsible: true,
  55. link: {
  56. type:'doc',
  57. id:'garden/garden',
  58. },
  59. items: [
  60. 'garden/mushroom',
  61. ]
  62. },
  63. {
  64. type:'category',
  65. label:'Health',
  66. collapsible: true,
  67. link: {
  68. type:'doc',
  69. id:'health/health',
  70. },
  71. items: [
  72. 'health/diet',
  73. 'health/mental',
  74. ]
  75. },
  76. {
  77. type:'category',
  78. label:'House',
  79. collapsible: true,
  80. collapsed: true,
  81. link: {
  82. type:'doc',
  83. id:'house/house',
  84. },
  85. items: [
  86. {
  87. type:'category',
  88. label:'Hurricane Helene',
  89. link: {
  90. type:'doc',
  91. id:'house/helene',
  92. },
  93. items: [
  94. 'house/helene-ins-sum',
  95. 'house/helene-ins-adjust',
  96. 'house/helene-repairs',
  97. ]
  98. },
  99. 'house/studio',
  100. 'house/kitchen',
  101. 'house/fire',
  102. 'house/bath',
  103. 'house/build',
  104. ]
  105. },
  106. {
  107. type:'doc',
  108. id:'ideas',
  109. },
  110. {
  111. type:'category',
  112. label:'Music',
  113. collapsible: true,
  114. link: {
  115. type:'doc',
  116. id:'music/music',
  117. },
  118. items: [
  119. 'music/logic',
  120. 'music/abcjs',
  121. 'music/scales',
  122. 'music/theory',
  123. ]
  124. },
  125. {
  126. type:'category',
  127. label:'Play',
  128. collapsible: true,
  129. link: {
  130. type:'doc',
  131. id:'play/play',
  132. },
  133. items: [
  134. 'play/golf',
  135. 'play/tennis',
  136. ]
  137. },
  138. {
  139. type:'doc',
  140. id:'travel',
  141. },
  142. {
  143. type: 'category',
  144. label: 'Work',
  145. collapsible: true,
  146. link: {
  147. type:'doc',
  148. id:'work/work',
  149. },
  150. items: [
  151. {
  152. type:'doc',
  153. id:'work/clients',
  154. },
  155. {
  156. type: 'category',
  157. label: 'Projects',
  158. collapsible: true,
  159. link: {
  160. type:'doc',
  161. id:'work/projects/index',
  162. },
  163. items: [
  164. 'work/projects/ai',
  165. 'work/projects/game',
  166. 'work/projects/gzet',
  167. 'work/projects/ham',
  168. 'work/projects/juryd',
  169. 'work/projects/pants',
  170. 'work/projects/zw',
  171. ],
  172. },
  173. {
  174. type: 'category',
  175. label: 'Wealth',
  176. collapsible: true,
  177. link: {
  178. type:'doc',
  179. id:'work/wealth',
  180. },
  181. items: [
  182. 'work/stocks',
  183. 'work/trades',
  184. ],
  185. },
  186. ],
  187. },
  188. ],
  189. };