sidebarslists.js 831 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. 'film',
  18. 'lit',
  19. 'music',
  20. {
  21. type: 'doc',
  22. label: '- Playlists',
  23. id: 'music_playlist',
  24. },
  25. ],
  26. },
  27. {
  28. type: 'doc',
  29. id: 'concepts',
  30. },
  31. {
  32. type: 'doc',
  33. id: 'places',
  34. },
  35. {
  36. type: 'doc',
  37. id: 'people',
  38. },
  39. {
  40. type: 'doc',
  41. id: 'things',
  42. },
  43. {
  44. type: 'doc',
  45. id: 'trivia',
  46. },
  47. {
  48. type: 'doc',
  49. id: 'quotes',
  50. },
  51. {
  52. type: 'doc',
  53. id: 'words',
  54. },
  55. {
  56. type: 'doc',
  57. id: 'lists',
  58. },
  59. ],
  60. };