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.
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.
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
npx shadcn add "https://ui.beste.co/r/stats71?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow above the figure, rendered through Badge23 |
figure | string | – | The single headline number, at the largest scale in the set |
figureLabel | string | – | What the figure counts |
statement | string | – | The figure read back in words, rendered as the h2 |
description | string | – | Supporting paragraph, right-aligned from md up |
image | { src: string; alt: string } | – | Full-bleed photograph closing the section |
caption | string | – | Caption under the photograph |
footnotes | Footnote[] | [] | Three qualifying figures under the statement |
button | { label: string; href: string } | – | Outline action linking to the method |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type BandImage = {
src: string;
alt: string;
};
type Footnote = {
value: string;
label: string;
};text-6xl up to lg:text-9xl, the largest type anywhere in the set. It is a p, not a heading: statement is the h2, so the document outline carries the sentence rather than the number.statement is written as an interpretation rather than a repetition, translating the figure into something a reader can picture. That is the block's whole method.max-w-7xl wrapper and the photograph is a direct child of the section so it runs edge to edge. The section carries pt-16 only, with the bottom padding on the footnotes row.max-w-7xl wrapper with matching padding, so it aligns with the text above even though the photograph does not.figure with a figcaption.tabular-nums.stats67
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.
stats68
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.
stats63
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.