|
@@ -0,0 +1,46 @@
|
|
|
|
+module.exports = {
|
|
|
|
+ lists: [
|
|
|
|
+ {
|
|
|
|
+ type:'doc',
|
|
|
|
+ id: 'index',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: 'category',
|
|
|
|
+ label: 'Art',
|
|
|
|
+ items: [
|
|
|
|
+ 'art',
|
|
|
|
+ 'lit',
|
|
|
|
+ 'film',
|
|
|
|
+ 'music'
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: 'category',
|
|
|
|
+ label: 'Places',
|
|
|
|
+ items: [
|
|
|
|
+ 'places'
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: 'category',
|
|
|
|
+ label: 'People',
|
|
|
|
+ items: [
|
|
|
|
+ 'people'
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: 'category',
|
|
|
|
+ label: 'Things',
|
|
|
|
+ items: [
|
|
|
|
+ 'things'
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: 'category',
|
|
|
|
+ label: 'Other Lists',
|
|
|
|
+ items: [
|
|
|
|
+ 'lists'
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+};
|
|
@@ -0,0 +1,35 @@
|
|
|
|
+module.exports = {
|
|
|
|
+ notes: [
|
|
|
|
+ {
|
|
|
|
+ type:'doc',
|
|
|
|
+ id: 'index',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type:'doc',
|
|
|
|
+ id:'TOC',
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: 'category',
|
|
|
|
+ label: 'Projects',
|
|
|
|
+ items: [
|
|
|
|
+ 'projects/dw',
|
|
|
|
+ 'projects/gzet',
|
|
|
|
+ 'projects/juryd',
|
|
|
|
+ 'projects/pants',
|
|
|
|
+ 'projects/zw',
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: 'category',
|
|
|
|
+ label: 'Space',
|
|
|
|
+ items: [
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: 'category',
|
|
|
|
+ label: 'Time',
|
|
|
|
+ items: [
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+};
|