diff --git a/docs/about.md b/docs/about.md new file mode 100644 index 0000000..bcc6813 --- /dev/null +++ b/docs/about.md @@ -0,0 +1,7 @@ +--- +id: about +title: About +sidebar_label: About +--- + +TE About page goes here. \ No newline at end of file diff --git a/docs/contributing.md b/docs/contributing.md new file mode 100644 index 0000000..f90336e --- /dev/null +++ b/docs/contributing.md @@ -0,0 +1,7 @@ +--- +id: contributing +title: Contributing +sidebar_label: Contributing +--- + +Contributor guide goes here. diff --git a/docs/doc1.md b/docs/doc1.md index 92fa8fb..3568f3b 100644 --- a/docs/doc1.md +++ b/docs/doc1.md @@ -1,7 +1,7 @@ --- id: doc1 -title: Style Guide -sidebar_label: Style Guide +title: doc1 +sidebar_label: doc1 --- You can write content using [GitHub-flavored Markdown syntax](https://github.github.com/gfm/). diff --git a/docs/te-101.md b/docs/te-101.md new file mode 100644 index 0000000..aaf061b --- /dev/null +++ b/docs/te-101.md @@ -0,0 +1,20 @@ +--- +id: te-101 +title: Token Engineering 101 +sidebar_label: Token Engineering 101 +--- + +### Intro Materials +- [Cryptoeconomics 101](https://aracred.github.io/website/blog/Cryptoeconomics%20101) - 📄 A high level overview to start to orient intuition around the token engineering process. +- [Glossary of systems concepts](https://community.cadcad.org/t/working-glossary-of-systems-concepts/17) - 📄 An overview of the lineage of token engineering. +- [Token engineering in practice](https://youtu.be/xRqXAlpWl0Y) - 📺 As advertised. +- [Towards a diversity of DAOs](https://www.youtube.com/watch?v=75769EjciVk) - 📺 Technologically enabled social systems: DAOs. +- [Differential Specification Syntax Key](https://community.cadcad.org/t/differential-specification-syntax-key/31) - 📄 How to read (and create) diagrams in the CadCAD ecosystem. +- [Token Engineering Fundamentals (2018)](https://www.youtube.com/watch?v=DsRG9uZmME8) - 📺 1 hour overview of token engineering and all the things related to it (spoiler alert: it's not all about tokens). + +### Long Form Content +- [Engineering for a safer world](http://sunnyday.mit.edu/safer-world.pdf) - 📕 Probably the best starting point for anyone entering token engineering to think about governance and automation in the same stream. + +### Other Things +- [Token Engineering YouTube Channel](https://www.youtube.com/channel/UCDmzlpzOlaTALYV0hAwT0Tg) - 📺 A cornucopia of token engineering lectures. +- [BlockScience resources page](https://block.science/resources/) - 📺 📄 📕 A curation of resources related to token engineering. \ No newline at end of file diff --git a/docusaurus.config.js b/docusaurus.config.js index a92d860..c02b6d4 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -3,7 +3,7 @@ module.exports = { tagline: 'Because tokens don\'t engineer themselves!', organizationName: 'te-temp', projectName: 'te-website', - baseUrl: '/', + baseUrl: '/te-website/', url: 'https://te-temp.github.io/', favicon: 'img/te-logo.png', themeConfig: { @@ -15,7 +15,7 @@ module.exports = { }, links: [ { - to: 'docs/doc1', + to: 'docs/about', activeBasePath: 'docs', label: '📚 Library', position: 'left', diff --git a/sidebars.js b/sidebars.js index 8765a2e..78df8b8 100644 --- a/sidebars.js +++ b/sidebars.js @@ -1,6 +1,14 @@ module.exports = { someSidebar: { - Docusaurus: ['doc1', 'doc2', 'doc3'], - Features: ['mdx'], + 'Getting Started': + [ + 'about', + 'contributing', + 'doc3' + ], + 'Token Engineering 101': + [ + 'te-101', + ], }, }; diff --git a/src/pages/index.js b/src/pages/index.js index 734169d..b5285dc 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -45,6 +45,17 @@ const features = [ ), }, + { + title: <>Commons Stack, + url: 'https://commonsstack.org/', + imageUrl: 'img/commons-stack-logo.png', + shortDescription: 'Realigning incentives around public goods', + description: ( + <> + A design and engineering group creating systems that incentivize the creation and maintenance of public goods. + + ), + }, { title: <>SourceCred, url: 'https://sourcecred.io', @@ -78,6 +89,17 @@ const features = [ ), }, + { + title: <>Grassroots Economics, + url: 'https://www.grassrootseconomics.org/', + imageUrl: 'img/grassroots-economics-logo.png', + shortDescription: 'Creating sustainable community currentices', + description: ( + <> + Through community currencies people have a way to exchange goods and services and incubate new businesses. + + ), + }, ]; diff --git a/static/img/commons-stack-logo.png b/static/img/commons-stack-logo.png new file mode 100644 index 0000000..ae17cfd Binary files /dev/null and b/static/img/commons-stack-logo.png differ diff --git a/static/img/grassroots-economics-logo.png b/static/img/grassroots-economics-logo.png new file mode 100644 index 0000000..e55e3b8 Binary files /dev/null and b/static/img/grassroots-economics-logo.png differ