sidebarsnotes.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. link: {
  82. type:'doc',
  83. id:'house/house',
  84. },
  85. items: [
  86. 'house/build',
  87. 'house/studio'
  88. ]
  89. },
  90. {
  91. type:'doc',
  92. id:'ideas',
  93. },
  94. {
  95. type:'doc',
  96. id:'tennis',
  97. },
  98. {
  99. type:'doc',
  100. id:'travel',
  101. },
  102. {
  103. type: 'category',
  104. label: 'Work',
  105. collapsible: true,
  106. link: {
  107. type:'doc',
  108. id:'work/work',
  109. },
  110. items: [
  111. {
  112. type:'doc',
  113. id:'work/clients',
  114. },
  115. {
  116. type: 'category',
  117. label: 'Projects',
  118. collapsible: true,
  119. link: {
  120. type:'doc',
  121. id:'work/projects/index',
  122. },
  123. items: [
  124. 'work/projects/ai',
  125. 'work/projects/game',
  126. 'work/projects/gzet',
  127. 'work/projects/ham',
  128. 'work/projects/juryd',
  129. 'work/projects/pants',
  130. 'work/projects/zw',
  131. ],
  132. },
  133. {
  134. type:'doc',
  135. id:'work/wealth',
  136. },
  137. ],
  138. },
  139. ],
  140. };