diff --git a/site/components/Home/Why.js b/site/components/Home/Why.js new file mode 100644 index 0000000..c9aba29 --- /dev/null +++ b/site/components/Home/Why.js @@ -0,0 +1,111 @@ +export default function Why() { + return ( +
+
+

Why this Project

+

+ What is the motivation and purpose of this project? +

+
+
+
+
+
+
+

+ Situation: controversial and complex +

+

+ Web3 & crypto has become a massive phenomenon. Big claims are made for its impact extending to the transformation of our economy and society. It is also exceptionally controversial and polarizing with significant disagreement. Finally, it’s not an easy topic to make sense of. +

+ +
+
+
+
+
+ Read More +
+
+
+
+
+
+
+
+
+

+ The Problem: the stakes are high, but we’re struggling +

+

+ The phenomenon has global implications and touches on multiple complex areas. We require good, collective sensemaking, or else risk polarization. As a “runaway problem”, the investment of attention and money has grown exponentially. Should Web3 fail to deliver on its promises, the waste would be massive. In addition, with such fast-growing phenomena, things happen before we can notice, far less prevent them (eg climate change). +

+ +
+
+
+
+
+ Read More +
+
+
+
+
+
+
+
+
+

+ We need better sensemaking +

+

+ We need to make good choices, in a constructive, intersectional and de-polarizing way. Do we advance Web3 or curb it? How should we allocate our resources? Good sensemaking begins by clarifying and agreeing on what questions to ask and the process of answering them. +

+ +
+
+
+
+
+ Read More +
+
+
+
+
+ ) +} diff --git a/site/pages/index.js b/site/pages/index.js index 395556a..b16f1eb 100644 --- a/site/pages/index.js +++ b/site/pages/index.js @@ -1,6 +1,7 @@ import { Hero } from 'components/Home/Hero' import { Latest } from 'components/Home/Latest' import Features from 'components/Home/Features' +import Why from 'components/Home/Why' export default function Home(props) { return ( @@ -8,6 +9,7 @@ export default function Home(props) { + ) }