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

About33: About With Stats Band

About section built as a two-track split: a narrow left rail carries an eyebrow badge and a primary-tone seal CTA, the right side carries a bold heading over two side-by-side images, and a four-column stats band runs the full width beneath both.

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

Base UI flavor

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

This installs the block to components/beste/block/about33.tsx, the badge6 and button1 components it uses for the eyebrow label and the seal CTA, and its dependencies.

Quick start

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

tsx
import { About33, about33Demo } from "@/components/beste/block/about33";

export default function Page() {
  return <About33 {...about33Demo} />;
}

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

tsx
import { About33 } from "@/components/beste/block/about33";

export default function Page() {
  return (
    <About33
      label="Our Story"
      button={{ label: "Meet The Team", href: "https://beste.co" }}
      heading="We turn curious beginners into working engineers."
      images={[
        { src: "https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=900&h=675&fit=crop", alt: "Team workshop" },
        { src: "https://images.unsplash.com/photo-1531482615713-2afd69097998?w=900&h=675&fit=crop", alt: "Code review session" },
      ]}
      stats={[
        { value: "9,400", title: "Graduates hired worldwide." },
        { value: "94%", title: "Land a job within six months." },
        { value: "$78k", title: "Median starting salary." },
        { value: "320+", title: "Hiring partners on board." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow label rendered inside the badge
buttonActionLinkSeal-pill CTA at the bottom of the left rail
headingstringRendered via dangerouslySetInnerHTML; supports <br /> and entities
imagesImageItem[][]Only the first two entries render
statsStatItem[][]Four-column stat band below the split
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };
type ImageItem = { src: string; alt: string };
type StatItem = { value: string; title: 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

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

about5

Image & Text Split

Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.

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

about13

Company Profile

Asymmetric layout with company story and image on the left, and a vertical list of company details on the right. Great for press and investor pages.

PRO

about35

About Media Reel

About section with eyebrow, stacked stats and a read-more CTA beside a media card with a watch-reel play button.