From 9fdf12214528872ef605352449494db99a691f4f Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Thu, 5 Feb 2026 17:05:59 +0000 Subject: [PATCH] Add ELI5 section summarizing rVote mechanism Adds a succinct "rVote in 30 Seconds" section after the hero that explains: - Quadratic voting (exponential credit cost) - Reddit-style ranking (upvote/downvote) - Time-delayed vote decay (30-60 days) Co-Authored-By: Claude Opus 4.5 --- src/app/page.tsx | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 35c2307..b76dbbf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -115,6 +115,46 @@ export default async function HomePage() { + {/* ELI5 Section */} +
+ + + + ELI5 + + rVote in 30 Seconds + + +

+ rVote is a{" "} + quadratic Reddit-style ranking system{" "} + with time-delayed vote decay{" "} + for proposal prioritization. +

+
+
+ Quadratic +

+ Voting more costs exponentially more credits (1→1, 2→4, 3→9), preventing any single voice from dominating. +

+
+
+ Reddit-style +

+ Upvote or downvote proposals. The best ideas rise to the top through collective ranking. +

+
+
+ Vote Decay +

+ Votes fade after 30-60 days, ensuring rankings reflect current community priorities, not ancient history. +

+
+
+
+
+
+ {/* What is Quadratic Proposal Ranking */}