About Stats Grid

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

PRO

About34: About Stats Grid

About section with an eyebrow badge above a two-tone heading (a regular line followed by a muted <strong> continuation), then two portrait images sitting beside a hand-ruled 2x2 stats grid. There is no CTA button in this block, unlike most of its siblings.

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

Base UI flavor

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

This installs the block to components/beste/block/about34.tsx, the badge6 component it uses for the eyebrow label, and its dependencies.

Quick start

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

tsx
import { About34, about34Demo } from "@/components/beste/block/about34";

export default function Page() {
  return <About34 {...about34Demo} />;
}

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

tsx
import { About34 } from "@/components/beste/block/about34";

export default function Page() {
  return (
    <About34
      label="The Studio"
      heading="Polaris is an independent product and brand studio<br /><strong>shaping digital products ambitious teams are proud to ship.</strong>"
      images={[
        { src: "https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=800&h=1067&fit=crop", alt: "Studio portrait" },
        { src: "https://images.unsplash.com/photo-1531482615713-2afd69097998?w=800&h=1067&fit=crop", alt: "Team member portrait" },
      ]}
      stats={[
        { value: "11", title: "Years crafting products end to end." },
        { value: "60+", title: "Brands launched and scaled with us." },
        { value: "4.9", title: "Average partner satisfaction score." },
        { value: "18", title: "Makers across design and engineering." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow label rendered inside the badge
headingstringRendered via dangerouslySetInnerHTML; <strong> spans render in text-muted-foreground
imagesImageItem[][]Only the first two entries render, each as a 3:4 portrait
statsStatItem[][]Rendered as a fixed 2-column grid
classNamestringExtra classes for the outer <section>
ts
type ImageItem = { src: string; alt: string };
type StatItem = { value: string; title: string };

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

about33

About With Stats Band

About section with an eyebrow label and read-more action on the left, a bold heading with two side-by-side images on the right, and a four-column stats band below.

PRO

about68

Team Portrait Grid

A team section with an eyebrow over a hairline rule, a two-column heading, and a grid of portrait cards each with a name and role.

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

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

about8

Stats with Descriptions

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