sidebarsnotes.js 534 B

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