sidebarsnotes.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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:'category',
  38. label:'Dogs',
  39. collapsible: true,
  40. link: {
  41. type:'doc',
  42. id:'dogs/dogs',
  43. },
  44. items: [
  45. 'dogs/iris',
  46. ]
  47. },
  48. {
  49. type:'category',
  50. label:'Garden',
  51. collapsible: true,
  52. link: {
  53. type:'doc',
  54. id:'garden/garden',
  55. },
  56. items: [
  57. 'garden/mushroom',
  58. ]
  59. },
  60. {
  61. type:'doc',
  62. id:'golf',
  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',
  96. 'house/helene-ins-adjust',
  97. 'house/helene-ins-sum',
  98. ]
  99. },
  100. 'house/studio',
  101. 'house/bath',
  102. 'house/build',
  103. ]
  104. },
  105. {
  106. type:'doc',
  107. id:'ideas',
  108. },
  109. {
  110. type:'doc',
  111. id:'tennis',
  112. },
  113. {
  114. type:'doc',
  115. id:'travel',
  116. },
  117. {
  118. type: 'category',
  119. label: 'Work',
  120. collapsible: true,
  121. link: {
  122. type:'doc',
  123. id:'work/work',
  124. },
  125. items: [
  126. {
  127. type:'doc',
  128. id:'work/clients',
  129. },
  130. {
  131. type: 'category',
  132. label: 'Projects',
  133. collapsible: true,
  134. link: {
  135. type:'doc',
  136. id:'work/projects/index',
  137. },
  138. items: [
  139. 'work/projects/ai',
  140. 'work/projects/game',
  141. 'work/projects/gzet',
  142. 'work/projects/ham',
  143. 'work/projects/juryd',
  144. 'work/projects/pants',
  145. 'work/projects/zw',
  146. ],
  147. },
  148. {
  149. type: 'category',
  150. label: 'Wealth',
  151. collapsible: true,
  152. link: {
  153. type:'doc',
  154. id:'work/wealth',
  155. },
  156. items: [
  157. 'work/stocks',
  158. 'work/trades',
  159. ],
  160. },
  161. ],
  162. },
  163. ],
  164. };