import { createFileRoute } from "@tanstack/react-router"; import { ChapterNext } from "@/components/chapter-next"; import { OutlineLink } from "@/components/outline-button"; import { StatsRow } from "@/components/stats-row"; import { arms, buyers } from "@/lib/content"; export const Route = createFileRoute("/arms")({ component: Arms }); function Arms() { return (

Arms

Foundation owns the mission. Companies donate up.

Operating arms stay private so an index cannot board the house. They earn, then donate up. Public-good chapters — Backup, Mind, University — are what federal and lab partners actually buy.

{arms.map((arm) => (

{arm.kicker}

{arm.name}

{arm.body}

))}

Living systems

Hive, mycelium, loop. Licensed. No garage pathogens.

Distributed life as an analog for distributed machines. Closed-loop habitat literacy for sea, ice, and space. Partners hold the licenses. The house does not run virus work.

Who this is for

{buyers.map((a) => (

{a.kicker}

{a.name}

{a.body}

))}
Build Grant doors Inquire
); }