sidebarsnotes.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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:'doc',
  66. id:'health',
  67. },
  68. {
  69. type:'category',
  70. label:'House',
  71. collapsible: true,
  72. link: {
  73. type:'doc',
  74. id:'house/house',
  75. },
  76. items: [
  77. 'house/build',
  78. 'house/studio'
  79. ]
  80. },
  81. {
  82. type:'doc',
  83. id:'tennis',
  84. },
  85. {
  86. type:'doc',
  87. id:'travel',
  88. },
  89. {
  90. type: 'category',
  91. label: 'Work',
  92. collapsible: true,
  93. link: {
  94. type:'doc',
  95. id:'work/work',
  96. },
  97. items: [
  98. {
  99. type:'doc',
  100. id:'work/clients',
  101. },
  102. {
  103. type: 'category',
  104. label: 'Projects',
  105. collapsible: true,
  106. link: {
  107. type:'doc',
  108. id:'work/projects/index',
  109. },
  110. items: [
  111. 'work/projects/ai',
  112. 'work/projects/game',
  113. 'work/projects/gzet',
  114. 'work/projects/ham',
  115. 'work/projects/juryd',
  116. 'work/projects/pants',
  117. 'work/projects/zw',
  118. ],
  119. },
  120. {
  121. type:'doc',
  122. id:'work/wealth',
  123. },
  124. ],
  125. },
  126. ],
  127. };