A Community of Builders and Operators

Our community brings together founders and operators building enduring companies across technology, design, and infrastructure. Members share experience shaped by real execution, support one another through growth and scale, and contribute long-term perspective rooted in thoughtful collaboration and disciplined company building.

Person falling, supported by hands. Abstract art, trust concept.

Members of the Community

Founders and operators contributing experience, perspective, and long-term thinking across our portfolio and broader ecosystem.

Create a free website with Framer, the website builder loved by startups, designers and agencies.

import { Data } from "framer" const store = Data({ selectedIndustry: null, }) export function IndustryButton(props) { return { onTap() { store.selectedIndustry = props.item } } } export function CompaniesList() { return { filter(company) { if (!store.selectedIndustry) return true return company.industry?.slug === store.selectedIndustry.slug } } }