About with Stats Grid

Auralis studio interior with raw concrete and a long shared worktable
(By the numbers)

Measured in outcomes, not output.

We resist the vanity of busywork. Every engagement is scoped to a result we can defend in a boardroom, then tracked from kickoff to the quarter it pays for itself.

14yrs

Compounding our craft inside one studio, not chasing the next trend cycle

92%

Of clients return for a second mandate within eighteen months

$310M

Attributable revenue traced back to launches we shaped end to end

27

Categories where our work now sets the reference standard

About this block

About with Stats GridPRO

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

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.

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/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

  • The image always renders first in source order and occupies the left column at lg and up; there is no displayPosition prop to flip the sides.
  • stats uses a fixed sm:grid-cols-2 grid regardless of item count, so it is designed around exactly four entries (the demo's 2x2 layout); a third or fifth stat wraps into a new row rather than reflowing to three columns.
  • Each stat is a border-t row with the value at text-4xl/text-5xl bold above a muted description line, not a boxed card.
  • The heading scales up to text-6xl at lg, larger than the equivalent heading in about63, since this variant has no facts list competing for vertical space.
  • The image container is a fixed aspect-[4/5]; supply a portrait-oriented photo to avoid letterboxing from object-cover.

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.