sidebarslists.js 638 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. module.exports = {
  2. lists: [
  3. {
  4. type:'doc',
  5. id: 'index',
  6. },
  7. {
  8. type: 'category',
  9. label: 'Art',
  10. items: [
  11. 'art',
  12. 'lit',
  13. 'film',
  14. 'music'
  15. ],
  16. },
  17. {
  18. type: 'category',
  19. label: 'Places',
  20. items: [
  21. 'places'
  22. ],
  23. },
  24. {
  25. type: 'category',
  26. label: 'People',
  27. items: [
  28. 'people'
  29. ],
  30. },
  31. {
  32. type: 'category',
  33. label: 'Things',
  34. items: [
  35. 'things'
  36. ],
  37. },
  38. {
  39. type: 'category',
  40. label: 'Other Lists',
  41. items: [
  42. 'lists'
  43. ],
  44. },
  45. ],
  46. };