sidebarsnotes.js 3.5 KB

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