diff --git a/docs/about.md b/docs/about.md index bcc6813..c66a9e1 100644 --- a/docs/about.md +++ b/docs/about.md @@ -4,4 +4,5 @@ title: About sidebar_label: About --- -TE About page goes here. \ No newline at end of file +The Token Engineering Community is working to answer the following question: "What does it take to do "token engineering" and how we can do it together?" + diff --git a/docs/faq.md b/docs/faq.md new file mode 100644 index 0000000..022841e --- /dev/null +++ b/docs/faq.md @@ -0,0 +1,8 @@ +--- +id: faq +title: Frequently Asked Questions +sidebar_label: FAQ +--- + +Stuff goes here. + diff --git a/docs/te-101-materials.md b/docs/te-101-materials.md index b19032b..c512beb 100644 --- a/docs/te-101-materials.md +++ b/docs/te-101-materials.md @@ -17,4 +17,15 @@ sidebar_label: Materials ### 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 +- [BlockScience resources page](https://block.science/resources/) - 📺 📄 📕 A curation of resources related to token engineering. +- [Token Engineering Learning Program](https://www.tannrallard.tech/token-engineering-learning-program/) - General introduction to the process and access to helpful materials. +- [Token Engineering Wiki](http://tokenengineering.wikidot.com/) - A glorious archive of tokeneconomic treasures. +- [CadCAD Tutorials](https://github.com/BlockScience/cadCAD/tree/master/tutorials) - A collection of CadCAD tutorials (may or may not be up to date). + +> Showcase 1-3 cases covering various steps of the total process initial vision > stakeholder map > system design > selecting component > simulations > behavioral data & attack vectors > security > living digital twin. + +Sebnem's Electraseed Medium article + +Videos: +- https://www.youtube.com/playlist?list=PLp4Qsobvo_Jv561ib0n2PkVQMbvXWr96e +- https://www.youtube.com/c/tokenengineering diff --git a/docs/workshops.md b/docs/workshops.md index 11b5cda..759dceb 100644 --- a/docs/workshops.md +++ b/docs/workshops.md @@ -5,3 +5,25 @@ sidebar_label: Workshops --- Stuff about the TE workshops goes here. + +## Upcoming Workshops and Meetups +- [ReadyLayerOne](https://readylayer.one/) - workshop, link agenda tba +- [Berlin meetup group](https://www.meetup.com/de-DE/Token-Engineering/) +- [Munich meetup group](https://www.meetup.com/de-DE/Token-Engineering-Munich/) + +## Past Workshops + +### Noncon + +> [NonCon2020 session recordings](https://www.youtube.com/playlist?list=PLp4Qsobvo_Jv561ib0n2PkVQMbvXWr96e) + +### TEGG + +Cryptoeconomic systems will redefine the way we understand business and economics in the 21st century. However, creating such tokenized ecosystems is hard. + +The TEGG 2019 invites token engineers, cryptoeconomic researchers, developers and professionals in the sector to learn, share insights, discuss, and move this new discipline forward. +TEGG 2019 is organized by the Token Engineering global community. + +Started only one year ago our community has quickly grown to 18 local meetup groups in 13 countries all across the globe. + +> [TEGG2019 session recordings](https://www.youtube.com/playlist?list=PL-GxJch-YeZckVPgl4O3mUoot3kq6NLKP) \ No newline at end of file diff --git a/docusaurus.config.js b/docusaurus.config.js index 0e3448b..be38177 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -42,6 +42,10 @@ module.exports = { label: '📜 Blog', to: 'blog', }, + { + label: '📺 YouTube', + href: 'https://www.youtube.com/c/TokenEngineering', + }, { label: '📚 Token Engineering 101', to: 'docs/te-101-materials', @@ -76,6 +80,10 @@ module.exports = { label: '💬 Discord', href: 'https://discord.gg/gHvksh8', }, + { + label: '💬 Telegram', + href: 'https://t.me/TokenEngineering', + }, { label: '🐈 GitHub', href: 'https://github.com/tokenengineeringcommunity', diff --git a/sidebars.js b/sidebars.js index f17bfc1..f6099cc 100644 --- a/sidebars.js +++ b/sidebars.js @@ -4,7 +4,7 @@ module.exports = { [ 'about', 'contributing', - 'doc3' + 'faq' ], 'Token Engineering 101': [ diff --git a/src/css/custom.css b/src/css/custom.css index ef46fd2..43d02b8 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -33,5 +33,6 @@ text-align: center; font-size: 1.5vmin; padding: 3vmin; + margin: 0 auto; } diff --git a/src/pages/index.js b/src/pages/index.js index feef3a7..4e9ba5b 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -56,6 +56,17 @@ const features = [ ), }, + { + title: <>TEGG, + url: 'https://tegg.io/', + imageUrl: 'img/tegg-logo.png', + shortDescription: 'Token Engineering Global Gathering', + description: ( + <> + TEGG is the global gathering of cryptoeconomic researchers and practitioners. Our aim is to establish a body of theory, practice, tools and a sense of responsibility for building successful and sustainable blockchain token economies. + + ), + }, { title: <>SourceCred, url: 'https://sourcecred.io', @@ -131,7 +142,7 @@ function Home() { 'button button--outline button--secondary button--lg', styles.getStarted, )} - to={useBaseUrl('docs/doc1')}> + to={useBaseUrl('docs/about')}> Get Started diff --git a/static/img/tegg-logo.png b/static/img/tegg-logo.png new file mode 100644 index 0000000..e9770b7 Binary files /dev/null and b/static/img/tegg-logo.png differ