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

About66: About with Stats Grid

Two-column about section with a tall portrait image on one side and an eyebrow badge, heading, description, and a 2x2 grid of large stat figures on the other. Built for studios that want to back up an about statement with a handful of hard numbers.

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

Base UI flavor

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

This installs the block to components/beste/block/about66.tsx, the badge7 component it uses for the eyebrow badge, and its dependencies.

Quick start

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

tsx
import { About66, about66Demo } from "@/components/beste/block/about66";

export default function AboutPage() {
  return <About66 {...about66Demo} />;
}

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

tsx
import { About66 } from "@/components/beste/block/about66";

export default function AboutPage() {
  return (
    <About66
      badge={{ label: "By the numbers" }}
      heading="Measured in <strong>outcomes</strong>, not output."
      description="Every engagement is scoped to a result we can defend in a boardroom."
      stats={[
        { value: "9yrs", title: "Compounding our craft inside one studio" },
        { value: "40+", title: "Brands we have carried from zero to launch" },
      ]}
      image={{
        src: "https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=900&h=1125&fit=crop",
        alt: "Studio interior with a long shared worktable",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow badge above the heading
headingstringSection heading; supports inline <strong> for muted emphasis
descriptionstringSupporting paragraph under the heading
statsAbout66Stat[][]Figures rendered in the 2-column stat grid
imageAbout66ImagePortrait photo in the left column
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string };
type About66Stat = { value: string; title: string };
type About66Image = { src: string; alt: string };

Behavior notes

More About blocks

View all About
PRO

about34

About Stats Grid

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

PRO

about8

Stats with Descriptions

Four-column stats grid with large numbers, titles, and supporting descriptions. Perfect for impact and results 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

about1

Team & Mission

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

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.