sidebarsnotes.js 3.4 KB

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