sidebarsnotes.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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: 'category',
  18. label: 'Education',
  19. collapsible: true,
  20. link: {
  21. type:'doc',
  22. id:'art/education',
  23. },
  24. items: [
  25. 'art/visual',
  26. 'art/design',
  27. 'art/media',
  28. ],
  29. },
  30. ],
  31. },
  32. {
  33. type:'category',
  34. label:'Dogs',
  35. collapsible: true,
  36. link: {
  37. type:'doc',
  38. id:'dogs/dogs',
  39. },
  40. items: [
  41. 'dogs/iris',
  42. ]
  43. },
  44. {
  45. type:'category',
  46. label:'Garden',
  47. collapsible: true,
  48. link: {
  49. type:'doc',
  50. id:'garden/garden',
  51. },
  52. items: [
  53. 'garden/mushroom',
  54. ]
  55. },
  56. {
  57. type:'doc',
  58. id:'golf',
  59. },
  60. {
  61. type:'doc',
  62. id:'health',
  63. },
  64. {
  65. type:'category',
  66. label:'House',
  67. collapsible: true,
  68. link: {
  69. type:'doc',
  70. id:'house/house',
  71. },
  72. items: [
  73. 'house/build',
  74. ]
  75. },
  76. {
  77. type:'doc',
  78. id:'tennis',
  79. },
  80. {
  81. type:'doc',
  82. id:'travel',
  83. },
  84. {
  85. type: 'category',
  86. label: 'Work',
  87. collapsible: true,
  88. link: {
  89. type:'doc',
  90. id:'work/work',
  91. },
  92. items: [
  93. {
  94. type:'doc',
  95. id:'work/clients',
  96. },
  97. {
  98. type:'doc',
  99. id:'work/design',
  100. },
  101. {
  102. type: 'category',
  103. label: 'Projects',
  104. collapsible: true,
  105. link: {
  106. type:'doc',
  107. id:'work/projects/index',
  108. },
  109. items: [
  110. 'work/projects/ai',
  111. 'work/projects/game',
  112. 'work/projects/gzet',
  113. 'work/projects/ham',
  114. 'work/projects/juryd',
  115. 'work/projects/pants',
  116. 'work/projects/zw',
  117. ],
  118. },
  119. {
  120. type:'doc',
  121. id:'work/wealth',
  122. },
  123. ],
  124. },
  125. ],
  126. };