From 4ef1fb4e1959ef50f7daaa6d342fc72e3fef8022 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Sun, 22 Feb 2026 23:49:09 +0000 Subject: [PATCH] Add (Com)post Capitalism section with link to compostcapitalism.xyz New section between Alternatives and Post-Appitalism covering the decompose/transform/regenerate framing. Includes nav link and CTA button. Co-Authored-By: Claude Opus 4.6 --- app/page.tsx | 2 + components/compost-capitalism-section.tsx | 73 +++++++++++++++++++++++ components/navigation.tsx | 1 + 3 files changed, 76 insertions(+) create mode 100644 components/compost-capitalism-section.tsx diff --git a/app/page.tsx b/app/page.tsx index 2c34b21..deacd4a 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -2,6 +2,7 @@ import { HeroSection } from "@/components/hero-section" import { MycoeconomicsSection } from "@/components/mycoeconomics-section" import { AlternativesSection } from "@/components/alternatives-section" import { CritiqueSection } from "@/components/critique-section" +import { CompostCapitalismSection } from "@/components/compost-capitalism-section" import { PostAppitalismSection } from "@/components/post-appitalism-section" import { ActionSection } from "@/components/action-section" import { NewsletterSignup } from "@/components/newsletter-signup" @@ -15,6 +16,7 @@ export default function HomePage() { + diff --git a/components/compost-capitalism-section.tsx b/components/compost-capitalism-section.tsx new file mode 100644 index 0000000..17eedf7 --- /dev/null +++ b/components/compost-capitalism-section.tsx @@ -0,0 +1,73 @@ +import { Button } from "@/components/ui/button" +import { ArrowRight, Leaf, Recycle, Sprout } from "lucide-react" + +export function CompostCapitalismSection() { + return ( +
+
+
+

+ (Com)post Capitalism +

+

+ What if we treated capitalism like organic matter — breaking down its extractive excesses to nourish + regenerative systems that work for the many, not the few? +

+
+ +
+
+
+ +
+

Decompose

+

+ Zombified institutions — corporate monopolies, financialized housing, extractive industries — are the dead + matter. Mycelium breaks them down. +

+
+ +
+
+ +
+

Transform

+

+ Capital trapped in outdated systems, attention harvested by algorithms, care work rendered invisible — + these are resources waiting to be redirected. +

+
+ +
+
+ +
+

Regenerate

+

+ From the composted remains, new systems emerge — worker cooperatives, commons-based governance, + solidarity economies rooted in mutual aid. +

+
+
+ +
+

+ Capitalism isn't something to overthrow — it's something to compost. The nutrients are already here. + The mycelial networks are already spreading. The soil is ready. +

+ +
+
+
+ ) +} diff --git a/components/navigation.tsx b/components/navigation.tsx index e59c33b..f0b3e88 100644 --- a/components/navigation.tsx +++ b/components/navigation.tsx @@ -11,6 +11,7 @@ export function Navigation() { { href: "#critique", label: "The Problem" }, { href: "#mycoeconomics", label: "Mycoeconomics" }, { href: "#alternatives", label: "Alternatives" }, + { href: "#compost", label: "(Com)post" }, { href: "#action", label: "Take Action" }, ]