sidebarsnotes.js 508 B

1234567891011121314151617181920212223242526272829303132333435
  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. items: [
  15. 'projects/dw',
  16. 'projects/gzet',
  17. 'projects/juryd',
  18. 'projects/pants',
  19. 'projects/zw',
  20. ],
  21. },
  22. {
  23. type: 'category',
  24. label: 'Space',
  25. items: [
  26. ],
  27. },
  28. {
  29. type: 'category',
  30. label: 'Time',
  31. items: [
  32. ],
  33. },
  34. ],
  35. };