sidebarslists.js 722 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. module.exports = {
  2. lists: [
  3. {
  4. type:'doc',
  5. id: 'index',
  6. },
  7. {
  8. type: 'doc',
  9. id: 'next',
  10. },
  11. {
  12. type: 'category',
  13. label: 'Art',
  14. collapsible: false,
  15. items: [
  16. 'art',
  17. 'lit',
  18. 'film',
  19. 'music'
  20. ],
  21. },
  22. {
  23. type: 'doc',
  24. id: 'concepts',
  25. },
  26. {
  27. type: 'doc',
  28. id: 'places',
  29. },
  30. {
  31. type: 'doc',
  32. id: 'people',
  33. },
  34. {
  35. type: 'doc',
  36. id: 'things',
  37. },
  38. {
  39. type: 'doc',
  40. id: 'trivia',
  41. },
  42. {
  43. type: 'doc',
  44. id: 'quotes',
  45. },
  46. {
  47. type: 'doc',
  48. id: 'words',
  49. },
  50. {
  51. type: 'doc',
  52. id: 'lists',
  53. },
  54. ],
  55. };