sidebarsnotes.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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:'golf',
  39. },
  40. {
  41. type:'doc',
  42. id:'health',
  43. },
  44. {
  45. type:'doc',
  46. id:'house',
  47. },
  48. {
  49. type:'doc',
  50. id:'tennis',
  51. },
  52. {
  53. type:'doc',
  54. id:'work',
  55. },
  56. {
  57. type: 'category',
  58. label: 'Projects',
  59. collapsible: true,
  60. link: {
  61. type:'doc',
  62. id:'projects/index',
  63. },
  64. items: [
  65. 'projects/ai',
  66. 'projects/game',
  67. 'projects/gzet',
  68. 'projects/ham',
  69. 'projects/juryd',
  70. 'projects/pants',
  71. 'projects/zw',
  72. ],
  73. },
  74. ],
  75. };