Stats with Descriptions

By the Numbers

Impact you can measure

We let our results speak for themselves. Here is what we have accomplished together with our customers and community.

200K+

Active Users

Developers and designers use our blocks in production every month.

800+

Components

Ready-to-use blocks across 30 categories, growing every week.

50+

Countries

Teams around the world trust us to power their interfaces.

99.9%

Uptime

Our registry and CDN have maintained near-perfect availability.

About this block

Stats with DescriptionsPRO

Four-column stats grid with large numbers, titles, and supporting descriptions. Perfect for impact and results sections.

About8: Stats with Descriptions

Four-column stats grid where each card carries a large number, a short title, and a supporting sentence, going further than a bare stat row by giving every metric its own explanation.

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

Base UI flavor

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

This installs the block to components/beste/block/about8.tsx, along with the shadcn/ui badge and button components it depends on.

Quick start

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

tsx
import { About8, about8Demo } from "@/components/beste/block/about8";

export default function AboutPage() {
  return <About8 {...about8Demo} />;
}

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

tsx
import { About8 } from "@/components/beste/block/about8";

export default function AboutPage() {
  return (
    <About8
      badge={{ label: "By the Numbers", variant: "secondary" }}
      heading="Impact you can measure"
      description="We let our results speak for themselves."
      stats={[
        { title: "Active Users", value: "200K+", description: "Used in production every month." },
        { title: "Components", value: "800+", description: "Ready-to-use blocks across 30 categories." },
        { title: "Uptime", value: "99.9%" },
      ]}
      buttons={[{ label: "Start Building", href: "https://beste.co" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small label above the heading
headingstringSection heading
descriptionstringIntro paragraph under the heading
statsStatItem[][]Cards rendered in the four-column grid
buttonsButtonItem[][]CTA row at the bottom
classNamestringExtra classes for the outer <section>
ts
type StatItem = {
  title: string;
  value: string;
  description?: string;
};

type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};

Behavior notes

  • The grid is fixed at sm:grid-cols-2 lg:grid-cols-4. Four stats (the demo count) fill exactly one row at lg, but other counts leave a partial row rather than rebalancing to a different column count.
  • Each stat is its own muted panel (rounded-md bg-muted/50 p-6) rather than plain text on the section background, and every field inside a card is centered.
  • description is optional per stat, so some cards can show only the number and title while others carry the explanatory sentence beneath.
  • Value typography scales from text-4xl to text-5xl at md, larger than the section heading itself once at desktop width.

More About blocks

View all About
PRO

about66

About with Stats Grid

Two-column about with a tall image on one side and an eyebrow, heading, description, and 2x2 stats grid on the other.

PRO

about1

Team & Mission

Two-column about section with mission statement, company stats, and team member grid. Perfect for company pages and landing sections.

PRO

about34

About Stats Grid

About section: eyebrow label, two-tone heading, two portraits beside a 2x2 stats grid.

PRO

about23

Story, Image & Team Row

Two-column layout with company story, stats, and leadership quote on the left, team photo and avatar row on the right.

PRO

about2

Values with Team Photo

Full-width team photo with a three-column values grid below. Great for culture pages and brand storytelling.

PRO

about55

Four Parts About

A type-led about with an oversized statement and a four-part Who/What/How/Why grid.