import { Card, CardContent } from "@/components/ui/card" import { Clock, TrendingUp, Shield, Users } from "lucide-react" export function OverviewSection() { const features = [ { icon: Clock, title: "Continuous Voting", description: "Express your preferences continuously, not just during time-boxed voting periods. Change your vote at any time.", }, { icon: TrendingUp, title: "Conviction Growth", description: "Your vote weight grows over time according to a halflife algorithm, giving more influence to long-term community members.", }, { icon: Shield, title: "Attack Resistant", description: "Sidesteps sybil attacks and provides collusion resistance through time-weighted mechanisms.", }, { icon: Users, title: "Human-Centric", description: "Captures human needs in temporal data flows, ensuring people remain central to automated systems.", }, ] return (

What is Conviction Voting?

Conviction Voting is a decision-making process in which voters continuously express their preference by staking tokens in support of proposals. The conviction (weight) of their vote grows over time, and proposals pass when they reach an algorithmically-set threshold.

{features.map((feature, index) => { const Icon = feature.icon return (

{feature.title}

{feature.description}

) })}
) }