@@ -31,64 +31,73 @@ const Card = styled(_Card)`
31
31
` ;
32
32
33
33
const leftPageContents = [
34
+ {
35
+ title : "Juror Level 0: Diogenes" ,
36
+ paragraphs : [
37
+ "Coherence Score below 25." ,
38
+ "This level is for new jurors or those frequently voting incoherently. A few coherent votes can help climb out of this level quickly." ,
39
+ ] ,
40
+ } ,
34
41
{
35
42
title : "Juror Level 1: Pythagoras" ,
36
43
paragraphs : [
37
- "Jurors are classified into distinct levels according to their performance starting from Level 1 ." ,
38
- "Level 1: Jurors with ≥ 1 case arbitrated with 0-70% of coherent votes ." ,
44
+ "Coherence Score between 25 and 49 ." ,
45
+ "Jurors here are gaining experience and starting to build voting reliability ." ,
39
46
] ,
40
47
} ,
41
48
{
42
49
title : "Juror Level 2: Socrates" ,
43
- paragraphs : [ "Level 2: Jurors with ≥ 3 cases arbitrated with more than 70% coherent votes." ] ,
50
+ paragraphs : [
51
+ "Coherence Score between 50 and 69." ,
52
+ "Mid-tier performance. Jurors at this level have demonstrated reasonable consistency in coherent voting." ,
53
+ ] ,
44
54
} ,
45
55
{
46
56
title : "Juror Level 3: Plato" ,
47
- paragraphs : [ "Level 3: Jurors with ≥ 7 cases arbitrated with more than 80% of coherent votes." ] ,
57
+ paragraphs : [
58
+ "Coherence Score between 70 and 89." ,
59
+ "Reliable jurors with a consistent track record of coherent votes. Just a few more coherent votes away from reaching the top." ,
60
+ ] ,
48
61
} ,
49
62
{
50
63
title : "Juror Level 4: Aristotle" ,
51
- paragraphs : [ "Level 4: Jurors with ≥ 10 cases arbitrated with more than 90% of coherent votes." ] ,
52
- } ,
53
- {
54
- title : "Juror Level 0: Diogenes" ,
55
64
paragraphs : [
56
- "There's a level for the low-performance/lazy jurors. Level 0: Jurors with ≥ 3 cases arbitrated" +
57
- " with less than 50% of coherent votes .",
65
+ "Coherence Score between 90 and 100." ,
66
+ "Top-tier jurors with excellent coherence. Trusted members of the platform .",
58
67
] ,
59
68
} ,
60
69
] ;
61
70
62
71
const userLevelData = [
72
+ {
73
+ level : 0 ,
74
+ title : "Diogenes" ,
75
+ totalCoherentVotes : 2 ,
76
+ totalResolvedVotes : 10 ,
77
+ } ,
63
78
{
64
79
level : 1 ,
65
80
title : "Pythagoras" ,
66
81
totalCoherentVotes : 6 ,
67
- totalResolvedVotes : 10 ,
82
+ totalResolvedVotes : 12 ,
68
83
} ,
69
84
{
70
85
level : 2 ,
71
86
title : "Socrates" ,
72
- totalCoherentVotes : 7 ,
73
- totalResolvedVotes : 10 ,
87
+ totalCoherentVotes : 22 ,
88
+ totalResolvedVotes : 34 ,
74
89
} ,
75
90
{
76
91
level : 3 ,
77
92
title : "Plato" ,
78
- totalCoherentVotes : 8 ,
79
- totalResolvedVotes : 10 ,
93
+ totalCoherentVotes : 52 ,
94
+ totalResolvedVotes : 65 ,
80
95
} ,
81
96
{
82
97
level : 4 ,
83
98
title : "Aristotle" ,
84
- totalCoherentVotes : 9 ,
85
- totalResolvedVotes : 10 ,
86
- } ,
87
- {
88
- level : 0 ,
89
- title : "Diogenes" ,
90
- totalCoherentVotes : 3 ,
91
- totalResolvedVotes : 10 ,
99
+ totalCoherentVotes : 90 ,
100
+ totalResolvedVotes : 90 ,
92
101
} ,
93
102
] ;
94
103
0 commit comments