Single Headline FigurePRO

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.

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.

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/stats71?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/stats71.tsx plus the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

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

tsx
import { Stats71, stats71Demo } from "@/components/beste/block/stats71";

export default function ImpactPage() {
  return <Stats71 {...stats71Demo} />;
}

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

tsx
import { Stats71 } from "@/components/beste/block/stats71";

export default function ImpactPage() {
  return (
    <Stats71
      badge={{ label: "One number" }}
      figure="11,340"
      figureLabel="hours handed back to clinical work last year"
      statement="That is five and a half full-time clinicians, recovered from admin nobody wanted to do"
      description="It is the only figure on this page because it is the one that matters."
      image={{ src: "/clinic/reception.jpg", alt: "A clinician in a bright clinic" }}
      caption="Counted as clinical room hours released from administrative blocks in 2025."
      footnotes={[
        { value: "11 hrs", label: "recovered per site each week, on median" },
        { value: "118", label: "practices included in the count" },
        { value: "60 days", label: "of each practice excluded while they settled" },
      ]}
      button={{ label: "Read how we counted it", href: "/method" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the figure, rendered through Badge23
figurestringThe single headline number, at the largest scale in the set
figureLabelstringWhat the figure counts
statementstringThe figure read back in words, rendered as the h2
descriptionstringSupporting paragraph, right-aligned from md up
image{ src: string; alt: string }Full-bleed photograph closing the section
captionstringCaption under the photograph
footnotesFootnote[][]Three qualifying figures under the statement
button{ label: string; href: string }Outline action linking to the method
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type BandImage = {
  src: string;
  alt: string;
};

type Footnote = {
  value: string;
  label: string;
};

Behavior notes

More Stats blocks

View all Stats
PRO

stats59

Image Stats Split

A tall image beside a headline and a grid of key studio stats.

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.

FREE

stats68

Segmented Total Breakdown

A results section that leads on one oversized total, splits it across a segmented accent bar, then legends each segment on a hairline row aligning its value, share, and what it covers.

PRO

stats63

Result Cards With Lead

An eyebrow and large heading paired with a dark CTA on one row, above three tall stat cards that each combine an oversized figure, an inline label, a divider, and a supporting description.

PRO

stats5

Split Layout Stats

Two-column layout with heading and description on the left, 2x2 stats grid on the right. Perfect for pairing narrative with key metrics.

FREE

stats66

Outcome Metric Rows

A results section that stacks each metric on its own hairline row, pairing an oversized figure with a short label, a sentence of context, and an optional year-over-year delta.