@@ -2,22 +2,57 @@ import React from "react";
2
2
3
3
import PageContentsTemplate from "../PageContentsTemplate" ;
4
4
5
- import CrowdfundAppeal from "./CrowdfundAppeal" ;
5
+ import StartACase from "./StartACase" ;
6
+ import Parameters from "./Parameters" ;
7
+ import VotingOptions from "./VotingOptions" ;
8
+ import Parties from "./Parties" ;
9
+ import Policy from "./Policy" ;
10
+ import WellDone from "./WellDone" ;
6
11
7
12
const leftPageContents = [
8
13
{
9
- title : "Dispute Resolver " ,
14
+ title : "Start a case " ,
10
15
paragraphs : [
11
- "If after the jury has reached a decision, a party is not satisfied (because she thinks the result was" +
12
- " unfair), she can appeal and have the dispute ruled again." ,
13
- "Every time the case is appealed a new round starts with all the voting options available for voting" +
14
- " again. The results of the previous rounds are irrelevant in terms of what the final result will be." ,
15
- "Each new appeal instance will have twice the previous number of jurors plus one." ,
16
+ "First, you need to write a title, and a description for the case. Make it simple to read and understand." ,
17
+ ] ,
18
+ } ,
19
+ {
20
+ title : "Parameters" ,
21
+ paragraphs : [
22
+ "Define some parameters:" ,
23
+ "• Choose a court to arbitrate the case.<br/>• Select a category.<br/>• Select the number of jurors." ,
24
+ "The more jurors you select, higher the arbitration cost will be. By default we use 3 jurors for the first " +
25
+ "round. The arbitration cost is the value used to pay the jurors for their work." ,
26
+ ] ,
27
+ } ,
28
+ {
29
+ title : "Voting options" ,
30
+ paragraphs : [
31
+ "Write the question jurors will answer when voting, and the voting options. You can have 2 or more options if needed." ,
32
+ ] ,
33
+ } ,
34
+ {
35
+ title : "Parties of the dispute" ,
36
+ paragraphs : [ "Define the parties involved in the dispute." ] ,
37
+ } ,
38
+ {
39
+ title : "Policy" ,
40
+ paragraphs : [
41
+ "Submit a Policy. The Policy provides jurors with a framework to vote fairly. It can be a set of " +
42
+ "criteria, a contract stating the rights and duties of the parties, or any set of pre-defined rules " +
43
+ "that are relevant to jurors' decision-making." ,
44
+ ] ,
45
+ } ,
46
+ {
47
+ title : "Well done!" ,
48
+ paragraphs : [
49
+ "The case is ready to be created! Review the information, and submit the case. Don't forget to submit " +
50
+ "evidence, and follow up the dispute resolution process until its conclusion." ,
16
51
] ,
17
52
} ,
18
53
] ;
19
54
20
- const rightPageComponents = [ CrowdfundAppeal ] ;
55
+ const rightPageComponents = [ StartACase , Parameters , VotingOptions , Parties , Policy , WellDone ] ;
21
56
22
57
interface IDisputeResolver {
23
58
toggleMiniGuide : ( ) => void ;
0 commit comments