Add some links and references

This commit is contained in:
Daniele Salatti 2022-06-01 11:25:54 -07:00
parent 7eed6e42cb
commit 6175cd5b06
7 changed files with 37 additions and 30 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 409 KiB

View File

@ -1,33 +1,43 @@
//import { VerticalFeatureRow } from '../feature/VerticalFeatureRow';
import { Section } from '../layout/Section'; import { Section } from '../layout/Section';
const VerticalFeatures = () => ( const VerticalFeatures = () => (
<Section <>
title="Work in progress" <Section>
description="We are working on this page. Please check back later." <div className="flex flex-wrap justify-center text-center">
> <div className="w-full p-6">
{/* <p className="text-xl pb-8">
<VerticalFeatureRow Conviction Voting is a decision making process in which voters continuously express their preference by staking tokens in support of proposals they would like to see approved,
title="Your title here" with the conviction (i.e. weight) of their vote growing over time.
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse bibendum, nunc non posuere consectetur, justo erat semper enim, non hendrerit dui odio id enim." </p>
image="/assets/images/feature.svg" <p className="text-xl">
imageAlt="First feature alt text" When a voter unstakes their tokens, their conviction for that proposal starts declining according to a decay function.
/> </p>
<VerticalFeatureRow </div>
title="Your title here" <div className="w-full p-6">
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse bibendum, nunc non posuere consectetur, justo erat semper enim, non hendrerit dui odio id enim." <figure>
image="/assets/images/feature2.svg" <img src="/assets/images/conviction-voting.png" alt="Conviction Voting" />
imageAlt="Second feature alt text" <figcaption>Example of Conviction Voting [<a href="https://medium.com/commonsstack/conviction-voting-a-novel-continuous-decision-making-alternative-to-governance-62e215ad2b3d">source</a>]</figcaption>
reverse </figure>
/> </div>
<VerticalFeatureRow </div>
title="Your title here"
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse bibendum, nunc non posuere consectetur, justo erat semper enim, non hendrerit dui odio id enim." </Section>
image="/assets/images/feature3.svg" <Section
imageAlt="Third feature alt text" title="Links and resources"
/> description="Here are some links to help you understand what Conviction Voting is and how it works."
*/} >
</Section> <div className="flex flex-wrap justify-center text-center">
<div className="w-full p-6">
<p className="text-xl pb-8">
👉 <a href="https://medium.com/commonsstack/announcing-the-conviction-voting-cadcad-model-release-8e907ce67e4e">Understanding Real-Time Vote Streaming</a> by Jeff Emmett
</p>
<p className="text-xl pb-8">
👉 <a href="https://medium.com/commonsstack/conviction-voting-a-novel-continuous-decision-making-alternative-to-governance-62e215ad2b3d">Conviction Voting: A Novel Continuous Decision Making Alternative to Governance</a> by Jeff Emmett
</p>
</div>
</div>
</Section>
</>
); );
export { VerticalFeatures }; export { VerticalFeatures };