"use client" import { useSectionReveal } from "@/hooks/use-section-reveal" const CARDS = [ { title: "Break Down", body: "Old systems don't disappear — they decompose. Capitalism's waste becomes the substrate for what grows next. Every collapsing institution releases nutrients back into the commons.", }, { title: "Transform", body: "Mycelium turns death into life. We turn extractive protocols into regenerative ones. The same energy that powered exploitation can power mutual aid — if we know how to compost it.", }, { title: "Nourish", body: "What's composted feeds what's growing. Every broken system contains the nutrients for its successor. The question isn't whether the old world will decompose — it's what we grow in its place.", }, ] export function CompostSection() { const sectionRef = useSectionReveal() return (

The Compost Layer

Decomposing extractive systems into nutrients for regeneration

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

{card.title}

{card.body}

))}

This is{" "} compost capitalism {" "} — the art of breaking down what no longer serves, so that what comes next can thrive.

) }