sidebarsnotes.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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/painters',
  33. 'art/palette',
  34. ],
  35. },
  36. {
  37. type:'doc',
  38. id:'autos',
  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:'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. collapsed: true,
  82. link: {
  83. type:'doc',
  84. id:'house/house',
  85. },
  86. items: [
  87. {
  88. type:'category',
  89. label:'Hurricane Helene',
  90. link: {
  91. type:'doc',
  92. id:'house/helene',
  93. },
  94. items: [
  95. 'house/helene-ins-sum',
  96. 'house/helene-ins-adjust',
  97. 'house/helene-repairs',
  98. ]
  99. },
  100. 'house/studio',
  101. 'house/kitchen',
  102. 'house/fire',
  103. 'house/bath',
  104. 'house/build',
  105. ]
  106. },
  107. {
  108. type:'doc',
  109. id:'ideas',
  110. },
  111. {
  112. type:'category',
  113. label:'Music',
  114. collapsible: true,
  115. link: {
  116. type:'doc',
  117. id:'music/music',
  118. },
  119. items: [
  120. 'music/logic',
  121. 'music/abcjs',
  122. 'music/scales',
  123. 'music/theory',
  124. ]
  125. },
  126. {
  127. type:'category',
  128. label:'Play',
  129. collapsible: true,
  130. link: {
  131. type:'doc',
  132. id:'play/play',
  133. },
  134. items: [
  135. 'play/golf',
  136. 'play/tennis',
  137. ]
  138. },
  139. {
  140. type:'doc',
  141. id:'travel',
  142. },
  143. {
  144. type: 'category',
  145. label: 'Work',
  146. collapsible: true,
  147. link: {
  148. type:'doc',
  149. id:'work/work',
  150. },
  151. items: [
  152. {
  153. type:'doc',
  154. id:'work/clients',
  155. },
  156. {
  157. type: 'category',
  158. label: 'Projects',
  159. collapsible: true,
  160. link: {
  161. type:'doc',
  162. id:'work/projects/index',
  163. },
  164. items: [
  165. 'work/projects/ai',
  166. 'work/projects/game',
  167. 'work/projects/gzet',
  168. 'work/projects/ham',
  169. 'work/projects/juryd',
  170. 'work/projects/pants',
  171. 'work/projects/zw',
  172. ],
  173. },
  174. {
  175. type: 'category',
  176. label: 'Wealth',
  177. collapsible: true,
  178. link: {
  179. type:'doc',
  180. id:'work/wealth',
  181. },
  182. items: [
  183. 'work/stocks',
  184. 'work/trades',
  185. ],
  186. },
  187. ],
  188. },
  189. ],
  190. };