<MetricPanelSlide>
expressiveStatsPresentation
Grid of two to four headline metrics with labels; tiles stagger in on slide enter (client).
When to use: Platform vitals, portfolio KPIs, or campaign scorecard at a glance. Pre-format values as strings (currency, %, counts).
Preview
| Prop | Type | Notes |
|---|---|---|
| label | string | Optional. HUD pill above the title. |
| title | string | Optional. Section headline (cyan). |
| description | string | Optional. Supporting line under the title. |
| stats | { value: string; label: string }[] | Required. Stat tiles (2–4). |
| tween | object | Optional. Optional GSAP vars for tile entrance. |
Examples
<MetricPanelSlide
label="Live Telemetry"
title="Platform Vitals"
description="Real-time aggregate figures from active deployments"
stats={[
{ value: "2.4k", label: "Active Worlds" },
{ value: "98M", label: "Pixels Rendered" },
{ value: "99.9%", label: "Uptime Score" },
{ value: "4K", label: "Max Resolution" }
]}
/>