Companies
We’ve Invested In

Companies We’ve Invested In

Our portfolio includes companies building foundational products across software, infrastructure, and global platforms. We invest with a long-term perspective, partnering with founders who value strong product thinking, disciplined execution, and enduring impact as they scale from early momentum to lasting businesses.

Isometric architectural blueprint of a building frame with a partially exposed interior.

Industry

Location

Year

Batch

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 } } }