Inverted Live CountersPRO

A live platform panel on one dark surface, with four light figures on a hairline rule and a floating trend card reading the month week by week.

Stats74: Inverted Live Counters

A live platform panel on one dark surface, with four light figures on a hairline rule and a floating trend card reading the month week by week.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/stats74?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/stats74?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/stats74.tsx, the stats16 trend piece it floats on the panel (installed to components/beste/piece/stats16.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

The installed file exports stats74Demo alongside the block: the exact props behind the preview above. Spread it to get a working panel in one line.

tsx
import { Stats74, stats74Demo } from "@/components/beste/block/stats74";

export default function LivePage() {
  return <Stats74 {...stats74Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Stats16 } from "@/components/beste/piece/stats16";
import { Stats74 } from "@/components/beste/block/stats74";

export default function LivePage() {
  return (
    <Stats74
      badge={{ label: "Right now" }}
      heading="The platform, as it stands this morning"
      description="Read from the live database rather than typed into a slide once a quarter."
      updatedLabel="Updated every hour, last at 09:15 UK"
      counters={[
        {
          value: "118",
          label: "practices live",
          detail: "Running real clinics today, not counting trials.",
        },
        {
          value: "99.97%",
          label: "availability this quarter",
          detail: "Against a 99.95% commitment, credited automatically when missed.",
        },
      ]}
      media={
        <Stats16
          label="Appointments this month"
          value="18,412"
          delta="9.1%"
          direction="up"
          caption="against the same point last month"
          bars={[42, 51, 47, 63, 58, 71, 76, 88]}
        />
      }
      mediaCaption="One bar per week. The dip in week three was half term."
      button={{ label: "See the status page", href: "/status" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow at the top of the panel, retoned for the dark surface
headingstringSection heading on the panel
descriptionstringSupporting paragraph, right-aligned from md up
updatedLabelstringWhen the figures were last read
countersCounter[][]Live figures, four across from lg
mediaReactNodeLive asset on the panel, stats16 in the demo
mediaCaptionstringCaption beside the trend card
button{ label: string; href: string }Outline action, retoned for the dark surface
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type Counter = {
  value: string;
  label: string;
  detail: string;
};

Behavior notes

More Stats blocks

View all Stats
PRO

stats38

Server Monitoring Stats

Monitoring dashboard aesthetic with status indicators, metric rows, live status badges, and a dark panel background.

PRO

stats14

Trend Indicator Stats

Dashboard-style stat cards with colored trend badges showing up, down, or neutral changes. Perfect for quarterly reports and growth metrics.

PRO

stats71

Single Headline Figure

A results section that commits to one enormous light figure, reads it back as a statement under a hairline, qualifies it with three smaller footnotes, and closes on a captioned full-bleed photograph.

PRO

stats70

Annual Report Readings

An annual results section pairing an image tile that floats a live breakdown chart with a light interpretation of it, then four hairline readings that each name their own source, closing on a method panel.

PRO

stats1

Right-Aligned Stats Cards

Right-aligned layout with heading, description, and a 2x2 grid of stat cards. Perfect for showcasing key metrics alongside content.

PRO

stats67

Before And After Pairs

A results section stacking each measure on its own hairline row, moving a muted starting figure to an accented result across an arrow, with a soft closing panel that floats a live comparison card.