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.
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.
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/stats70?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/stats70?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/stats70.tsx, the chart7 breakdown piece it floats on the tile (installed to components/beste/piece/chart7.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.
The installed file exports stats70Demo alongside the block: the exact props behind the preview above. Spread it to get a working report in one line.
import { Stats70, stats70Demo } from "@/components/beste/block/stats70";
export default function AnnualPage() {
return <Stats70 {...stats70Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Chart7 } from "@/components/beste/piece/chart7";
import { Stats70 } from "@/components/beste/block/stats70";
export default function AnnualPage() {
return (
<Stats70
badge={{ label: "The annual read" }}
heading="A year of clinic time, counted rather than estimated"
description="Published every January with the method attached."
media={
<Chart7
title="Where the year went"
caption="Booked hours by appointment type"
items={[
{ label: "Consultations", percent: 42 },
{ label: "Admin", percent: 11 },
]}
/>
}
image={{ src: "/backdrops/green.jpg", alt: "Deep green gradient backdrop" }}
chartCaption="Admin held in clinical rooms fell from 23% to 11% across the year."
readings={[
{
value: "184,920",
label: "appointments booked across the platform",
source: "All practices, 2025 calendar year",
},
{
value: "81%",
label: "median room utilisation",
source: "Booked hours over open hours, weighted by site",
},
]}
methodTitle="How we count"
methodBody="Figures come from the platform's own records, not from a survey."
button={{ label: "Read the full report", href: "/reports/2025" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow above the hairline rule, rendered through Badge23 |
heading | string | – | Section heading in the left column of the header |
description | string | – | Supporting paragraph, right-aligned from md up |
media | ReactNode | – | Live asset on the tile, chart7 in the demo |
image | { src: string; alt: string } | – | Backdrop behind the media tile |
chartCaption | string | – | The reading of the chart, set large beside it |
readings | Reading[] | [] | Headline figures, each naming its own source |
methodTitle | string | – | Heading in the closing method panel |
methodBody | string | – | How the figures were produced |
button | { label: string; href: string } | – | Action in the method panel |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type TileImage = {
src: string;
alt: string;
};
type Reading = {
value: string;
label: string;
source: string;
};chartCaption is set at text-xl rising to md:text-2xl rather than at body size, so the interpretation of the chart carries the same weight as the chart itself. It is a paragraph, not a heading, since the section already has one.source is required on every reading. A figure whose provenance is not stated beside it is the thing this block is built to prevent, and the closing method panel covers what the per-reading sources do not.border-t, so the rules are per column and stop at the gaps.lg:items-center, so the caption stays centered against the tile beside it.tabular-nums, so a row mixing "184,920" and "81%" still aligns.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.
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.
stats71
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.
stats66
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.