Stats sections

Full-width marketing stats panel. Distinct from app-ui Stats (smaller data-display grid).

Preview

Trusted by thousands of teams

The numbers speak for themselves.

Customers
44 million
Assets under management
$119 trillion
New users annually
46,000
Countries
6

React preview

LiveView (HEEx)

alias DesignSystem.UI.StatsSections

<StatsSections.stats_section
  title="Trusted by thousands"
  stats={[
    %{label: "Customers", value: "44 million"},
    %{label: "Revenue", value: "$15B"}
  ]}
/>

React (JSX)

import { StatsSection } from "../ui/index.mjs"

<StatsSection
  title="Trusted by thousands"
  stats={[
    { label: "Customers", value: "44 million" },
    { label: "Revenue", value: "$15B" },
  ]}
/>