sidebarsnotes.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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',
  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:'doc',
  34. id:'dogs',
  35. },
  36. {
  37. type:'category',
  38. label:'Garden',
  39. collapsible: true,
  40. link: {
  41. type:'doc',
  42. id:'garden',
  43. },
  44. items: [
  45. 'garden/mushroom',
  46. ]
  47. },
  48. {
  49. type:'doc',
  50. id:'golf',
  51. },
  52. {
  53. type:'doc',
  54. id:'health',
  55. },
  56. {
  57. type:'doc',
  58. id:'house',
  59. },
  60. {
  61. type:'doc',
  62. id:'tennis',
  63. },
  64. {
  65. type:'doc',
  66. id:'travel',
  67. },
  68. {
  69. type: 'category',
  70. label: 'Work',
  71. collapsible: true,
  72. link: {
  73. type:'doc',
  74. id:'work/work',
  75. },
  76. items: [
  77. {
  78. type:'doc',
  79. id:'work/clients',
  80. },
  81. {
  82. type:'doc',
  83. id:'work/design',
  84. },
  85. {
  86. type: 'category',
  87. label: 'Side Projects',
  88. collapsible: true,
  89. link: {
  90. type:'doc',
  91. id:'work/projects/index',
  92. },
  93. items: [
  94. 'work/projects/ai',
  95. 'work/projects/game',
  96. 'work/projects/gzet',
  97. 'work/projects/ham',
  98. 'work/projects/juryd',
  99. 'work/projects/pants',
  100. 'work/projects/zw',
  101. ],
  102. },
  103. {
  104. type:'doc',
  105. id:'work/wealth',
  106. },
  107. ],
  108. },
  109. ],
  110. };