sidebarsnotes.js 3.4 KB

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