"use client" import { useSectionReveal } from "@/hooks/use-section-reveal" const CARDS = [ { title: "Regenerative Economics", body: "New currencies that decompose when hoarded. Mutual credit that flows like nutrients through soil. Quadratic funding that amplifies the grassroots. Economics that serves life instead of extracting from it.", }, { title: "Sovereign Technology", body: "Community-owned servers. Open protocols. Software that serves its users. Hardware you can repair. Networks no corporation can capture. The tools of liberation, maintained by the communities that depend on them.", }, { title: "Living Commons", body: "Knowledge, tools, and infrastructure that belong to everyone. Not static archives but living, growing resources — tended by communities, enriched by participation, and freely shared across the mycelial web.", }, ] export function EmergenceSection() { const sectionRef = useSectionReveal() return (

Emergence

What grows underground eventually breaks the surface.

{/* Quote block */}

“The post-capitalist future is not a utopian fantasy. It is already growing, underground, in the networks we are building today.”

{CARDS.map((card, i) => (

{card.title}

{card.body}

))}

Building the{" "} post-appitalist.app lication layer for a regenerative economy. Tools that serve communities, not shareholders.

Sometimes the best way to see the future is to change your perspective. Stop{" "} trippinballs.lol {" "} and start building.

) }