sidebarsnotes.js 2.0 KB

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