64 lines
3.4 KiB
TypeScript
64 lines
3.4 KiB
TypeScript
export function AboutSection() {
|
|
return (
|
|
<section className="py-32 px-6 bg-card/30">
|
|
<div className="max-w-4xl mx-auto">
|
|
<div className="mb-16">
|
|
<h2 className="text-5xl md:text-6xl font-bold mb-6">About Me</h2>
|
|
</div>
|
|
|
|
<div className="space-y-6 text-lg leading-relaxed">
|
|
<p className="text-foreground/90">
|
|
I'm a token engineering researcher and systems designer exploring the intersection of economics, ecology,
|
|
and decentralized coordination. My work focuses on creating tools and frameworks that enable communities to
|
|
manage shared resources sustainably and equitably—what I call "decent/ralised" systems.
|
|
</p>
|
|
|
|
<p className="text-muted-foreground">
|
|
As a co-founder of the Commons Stack, I've been instrumental in developing cyber-physical commons
|
|
architectures that translate Elinor Ostrom's principles into DAO templates. We're building customizable
|
|
libraries of tools for communal management of public goods, including innovations like Augmented Bonding
|
|
Curves and Conviction Voting—a novel continuous decision-making mechanism that addresses critical attack
|
|
vectors in traditional governance systems.
|
|
</p>
|
|
|
|
<p className="text-muted-foreground">
|
|
Through the Bonding Curve Research Group, I research and develop Primary Issuance Markets that enable
|
|
dynamic token supply mechanisms. This work challenges the fixed supply paradigm dominant in Web3, offering
|
|
adaptive approaches that dampen volatility and generate sustainable revenue for token ecosystems. Our
|
|
research shows that tokens using primary issuance markets significantly outperform fixed-supply tokens in
|
|
price stability and risk-adjusted returns.
|
|
</p>
|
|
|
|
<p className="text-muted-foreground">
|
|
My MycoFi research explores mycoeconomics—economic systems inspired by fungal networks. By emulating
|
|
nature's evolutionary resource allocation algorithms through mycelial intelligence, we can design
|
|
regenerative protocols built on cooperation, mutual aid, and permaculture currency principles rather than
|
|
extractive growth models. I authored book.mycofi.earth to share these insights.
|
|
</p>
|
|
|
|
<p className="text-muted-foreground">
|
|
I'm passionate about open-source token engineering tools like cadCAD, which I helped open source at the 2019
|
|
Token Engineering Global Gathering. Just as the Golden Gate Bridge required rigorous engineering, our token
|
|
economies need mathematical validation and simulation to serve as robust public infrastructure.
|
|
</p>
|
|
</div>
|
|
|
|
<div className="mt-16 grid md:grid-cols-3 gap-8">
|
|
<div>
|
|
<h3 className="text-3xl font-bold text-primary mb-2">8+</h3>
|
|
<p className="text-muted-foreground">Years in Token Engineering</p>
|
|
</div>
|
|
<div>
|
|
<h3 className="text-3xl font-bold text-primary mb-2">50+</h3>
|
|
<p className="text-muted-foreground">Research Publications</p>
|
|
</div>
|
|
<div>
|
|
<h3 className="text-3xl font-bold text-primary mb-2">∞</h3>
|
|
<p className="text-muted-foreground">Regenerative Impact</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
)
|
|
}
|