Stats with Descriptions

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

PRO

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.

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

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

about3

Timeline & Milestones

Two-column layout with company stats on the left and a vertical timeline of milestones on the right. Ideal for company history and growth stories.