@@ -31,64 +31,73 @@ const Card = styled(_Card)`
3131` ;
3232
3333const 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+ } ,
3441 {
3542 title : "Juror Level 1: Pythagoras" ,
3643 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 ." ,
3946 ] ,
4047 } ,
4148 {
4249 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+ ] ,
4454 } ,
4555 {
4656 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+ ] ,
4861 } ,
4962 {
5063 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" ,
5564 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 .",
5867 ] ,
5968 } ,
6069] ;
6170
6271const userLevelData = [
72+ {
73+ level : 0 ,
74+ title : "Diogenes" ,
75+ totalCoherentVotes : 2 ,
76+ totalResolvedVotes : 10 ,
77+ } ,
6378 {
6479 level : 1 ,
6580 title : "Pythagoras" ,
6681 totalCoherentVotes : 6 ,
67- totalResolvedVotes : 10 ,
82+ totalResolvedVotes : 12 ,
6883 } ,
6984 {
7085 level : 2 ,
7186 title : "Socrates" ,
72- totalCoherentVotes : 7 ,
73- totalResolvedVotes : 10 ,
87+ totalCoherentVotes : 22 ,
88+ totalResolvedVotes : 34 ,
7489 } ,
7590 {
7691 level : 3 ,
7792 title : "Plato" ,
78- totalCoherentVotes : 8 ,
79- totalResolvedVotes : 10 ,
93+ totalCoherentVotes : 52 ,
94+ totalResolvedVotes : 65 ,
8095 } ,
8196 {
8297 level : 4 ,
8398 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 ,
92101 } ,
93102] ;
94103
0 commit comments