sidebarsnotes.js 557 B

12345678910111213141516171819202122232425262728293031323334353637
  1. module.exports = {
  2. notes: [
  3. {
  4. type:'doc',
  5. id: 'index',
  6. },
  7. {
  8. type:'doc',
  9. id:'TOC',
  10. },
  11. {
  12. type: 'category',
  13. label: 'Projects',
  14. collapsible: false,
  15. items: [
  16. 'projects/zw',
  17. 'projects/dw',
  18. 'projects/gzet',
  19. 'projects/juryd',
  20. 'projects/pants',
  21. 'projects/ham'
  22. ],
  23. },
  24. {
  25. type: 'category',
  26. label: 'Space',
  27. items: [
  28. ],
  29. },
  30. {
  31. type: 'category',
  32. label: 'Time',
  33. items: [
  34. ],
  35. },
  36. ],
  37. };