import { Card, CardContent } from "@/components/ui/card" export function BenefitsSection() { const benefits = [ { number: "01", title: "No Time Pressure", description: "Vote whenever you want without coordinating around specific voting periods", }, { number: "02", title: "Reduced Voter Fatigue", description: "Set your preferences once and they persist until you change them", }, { number: "03", title: "Better Signal Quality", description: "Long-term community members have more influence than short-term participants", }, { number: "04", title: "Attack Resistance", description: "Time-weighting makes vote-buying and last-minute coordination attacks less effective", }, { number: "05", title: "Continuous Data", description: "Rich temporal data streams enable responsive and adaptive governance", }, { number: "06", title: "Funds Allocation", description: "Specifically designed from first principles for allocating shared treasury resources", }, ] return (

Why Conviction Voting?

Traditional time-boxed voting has shown limited effectiveness in distributed communities. Conviction Voting offers a better alternative for continuous, human-centric decision making.

{benefits.map((benefit) => (
{benefit.number}

{benefit.title}

{benefit.description}

))}
) }