sidebarsnotes.js 1.7 KB

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