sidebarsnotes.js 3.4 KB

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