Health Statistics Display

By The Numbers

Trusted by thousands worldwide

Our commitment to excellence has helped countless individuals achieve their health and wellness goals.

50,000+
Active Members

People actively pursuing their wellness journey with us

98%
Satisfaction Rate

Members who report improved quality of life

500+
Expert Practitioners

Certified professionals across all disciplines

15
Years of Excellence

Pioneering wellness solutions since 2009

About this block

Health Statistics DisplayFREE

Large-format statistics grid showcasing key metrics like member counts, satisfaction rates, and years of service. Perfect for healthcare organizations and wellness brands.

Health16: Health Statistics Display

Large-format statistics grid for proof-point numbers like member counts, satisfaction rates, and years in business, each with a big value, a label, and an optional supporting line, closed out with a decorative gradient hairline.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/health16"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/health16"

This installs the block to components/beste/block/health16.tsx and its dependencies.

Quick start

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

tsx
import { Health16, health16Demo } from "@/components/beste/block/health16";

export default function AboutPage() {
  return <Health16 {...health16Demo} />;
}

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

tsx
import { Health16 } from "@/components/beste/block/health16";

export default function AboutPage() {
  return (
    <Health16
      eyebrow="By The Numbers"
      heading="A decade of measurable outcomes"
      description="Results our members track alongside their care team."
      statistics={[
        { value: "12,400+", label: "Active Members" },
        { value: "96%", label: "Satisfaction Rate", description: "Members who renew after year one" },
        { value: "10", label: "Years of Practice" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall uppercase label above the heading
headingstringSection heading
descriptionstringSection intro text
statisticsStatistic[][]Stat cards rendered in the grid
classNamestringExtra classes for the outer <section>
ts
type Statistic = {
  value: string;
  label: string;
  description?: string;
};

Behavior notes

  • The component returns null entirely when statistics is empty, so unlike most section blocks in this registry it will not render its heading or eyebrow without at least one statistic.
  • Column count at the lg breakpoint is derived from statistics.length: 1 stat centers in a single max-w-md column, 2 stats use 2 columns, counts divisible by 3 use 3 columns, and everything else (including 4) falls back to 4 columns. Below lg the grid is always 2-up (or 1-up for a single stat).
  • A decorative gradient hairline (bg-gradient-to-r from-transparent via-border to-transparent) always renders beneath the grid, regardless of props.
  • Each statistic's description line is optional and only rendered when present; value and label are always shown.

More Health blocks

View all Health
FREE

health1

Vitals Dashboard

Health metrics dashboard displaying vital signs like heart rate, blood oxygen, activity, and sleep with trend indicators. Perfect for wellness apps and health tracking platforms.

FREE

health5

Medical Services Grid

Service cards displaying medical specialties with appointment durations, feature lists, and CTAs. Perfect for hospitals, clinics, and healthcare provider websites.

PRO

health7

Daily Health Check-in

Two-column layout with feature highlights and daily summary card showing heart rate, activity, and recovery metrics. Perfect for fitness coaching and health monitoring apps.

PRO

health17

Care Overview Dashboard

A clinical overview with an eyebrow over a hairline rule, a two-column heading, and a bordered dashboard panel that composes a journeys stat, a retention ring, and a slim live-status strip, closing with a big-number outcomes row.

FREE

health6

Wellness Editorial Section

Long-form content section with rich text, bullet point highlights, and call-to-action buttons. Perfect for wellness blogs, healing journey stories, and health philosophy pages.

PRO

fitness33

Transformation Gallery

Before/after photo grid showcasing member transformations with weight loss stats and testimonial quotes. Perfect for fitness success stories and gym marketing.