About With Stats Band

Our Story
Meet The Team

We turn curious beginners into working engineers.
The proof – Careers that change for good.

Student pair-programming during a workshop
Mentor reviewing code with a learner

9,400

Graduates hired worldwide.

94%

Land a job within six months.

$78k

Median starting salary.

320+

Hiring partners on board.

About this block

About With Stats BandPRO

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.

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.

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

  • Only the first two images entries render (images.slice(0, 2)); extras are silently dropped, and the grid stays two columns wide even if just one image is passed.
  • The stats band is a hardcoded four-column grid on md with a right border between each item (md:border-r, cleared on the first and last); the layout assumes four stats and does not recompute column count from stats.length.
  • heading is injected with dangerouslySetInnerHTML, so line breaks and inline entities must be authored directly into the string, as the demo does with <br /> and &ndash;.
  • Button1 is rendered asChild with tone="primary", giving the CTA a primary-colored pill instead of the component's default dark tone.

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

about82

Band and Figures

An about section built around a wide photograph that drifts inside its frame: a serif heading that settles in word by word above it, then an intro with a sliding-marker pill beside four ruled serif figures that count up as they arrive.

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.