crypto-commons-website-2.0/components/what-are-commons.tsx

38 lines
1.7 KiB
XML

export function WhatAreCommons() {
return (
<section id="commons" className="py-20 px-6">
<div className="container mx-auto max-w-5xl">
<div className="space-y-8">
<h2 className="text-3xl md:text-4xl font-bold">What are the Crypto Commons?</h2>
<div className="space-y-6 text-lg leading-relaxed">
<p className="text-foreground">
Crypto commons are a subset of digital commons emerging in the context of Distributed Ledger Technology.
They comprise base layer protocols, applications built on top of them as well as tools and mechanisms used
in their design and calibration.
</p>
<div className="bg-accent/10 border-l-4 border-accent p-6 rounded-r space-y-4">
<p className="text-foreground">
In contrast to pre-DLT commons, they usually make active use of market mechanisms and economic
incentives in order to reward contributions to the common good.
</p>
</div>
<p className="text-muted-foreground">
Their solid grounding in market mechanism design as well as their distributed and permissionless operation
by loose networks of incentivized supporters opens up the possibility of scaling Commons frameworks beyond
the local and immediate.
</p>
<p className="text-muted-foreground">
As a computational and organizational substrate for decentralized economies, they reinvigorate
post-capitalist visions of commoning as a mode of production formulated in the wake of the internet.
</p>
</div>
</div>
</div>
</section>
)
}