@@ -58,82 +58,6 @@ const InfoRoadmap = () => {
5858 .
5959 </ p >
6060 </ div >
61-
62- < div className = "mb-8 p-6 bg-wash border border-line rounded-lg" >
63- < h4 className = "text-lg font-semibold text-primary mb-3" >
64- Current Implementation
65- </ h4 >
66- < p className = "text-secondary mb-3" >
67- The current House of Stake implementation has delivered core
68- requirements from the{ " " }
69- < a
70- href = "https://www.gauntlet.xyz/resources/near-house-of-stake-governance-proposal"
71- target = "_blank"
72- rel = "noopener noreferrer"
73- className = "text-primary underline hover:text-secondary"
74- >
75- Gauntlet and NEAR Foundation specification
76- </ a >
77- :
78- </ p >
79- < ul className = "list-disc list-inside text-secondary space-y-1 ml-4" >
80- < li > veToken contract</ li >
81- < li > Delegation and Undelegation</ li >
82- < li > Basic Proposal flow creation and voting</ li >
83- < li > veNEAR lockup contract + staking dynamics</ li >
84- </ ul >
85- < p className = "text-sm mt-4" >
86- Several improvements are needed to fully reflect the original
87- specifications, including support for both Fixed and Rolling Lock
88- mechanisms, and enhanced proposal approval processes similar to
89- Gauntlet's Council process with temperature check periods.
90- </ p >
91- </ div >
92-
93- { /* <div className="space-y-8">
94- {roadmapData.map((version) => (
95- <div
96- key={version.version}
97- className="border border-line rounded-lg overflow-hidden"
98- >
99- <div className="bg-wash px-6 py-4 border-b border-line">
100- <h4 className="text-xl font-bold text-primary">
101- {version.version}
102- </h4>
103- </div>
104- <div className="p-6 space-y-4">
105- {version.items.map((item, index) => (
106- <div
107- key={index}
108- className="p-4 bg-white border border-line rounded-lg hover:shadow-sm transition-shadow"
109- >
110- <div className="flex items-start justify-between mb-2">
111- <h5 className="text-lg font-semibold text-primary flex-1">
112- {item.title}
113- </h5>
114- <span
115- className={`px-3 py-1 text-xs font-medium rounded-full border ${
116- difficultyColors[item.difficulty]
117- }`}
118- >
119- Effort: {item.difficulty}
120- </span>
121- </div>
122- <p className="text-secondary text-sm leading-relaxed">
123- {item.description}
124- </p>
125- {item.priority && (
126- <p className="text-primary text-sm font-medium mt-2 italic">
127- {item.priority}
128- </p>
129- )}
130- </div>
131- ))}
132- </div>
133- </div>
134- ))}
135- </div> */ }
136-
13761 < div className = "mt-8 p-6 bg-blue-50 border border-blue-200 rounded-lg" >
13862 < h4 className = "text-lg font-semibold text-primary mb-3" >
13963 Future Considerations
0 commit comments