Frontend Developer· 2024

Content Catalyst Platform

ReactTypeScriptMulti-tenantSaaS / Data Platforms

Overview

A multi-tenant content intelligence platform. I owned the frontend design system — per-tenant theming, feature toggles, and locale-aware routing — while driving AI-adoption workflows across the team (UX ideation at 5x speed, implementation at 4x, using an agentic-by-default approach).

Content Catalyst tenant theming preview
Per-tenant theming driven by design tokens.
tsx
function useTenantTheme() {
  const tenant = useTenantContext();
  return tenant.theme ?? defaultTheme;
}