Open Company FactsPRO

An about section on a soft surface that opens on a light statement, then lays out eight company facts as a two-column hairline definition list beside an image tile floating a live locations card.

About72: Open Company Facts

An about section on a soft surface that opens on a light statement, then lays out eight company facts as a two-column hairline definition list beside an image tile floating a live locations card.

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

Base UI flavor

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

This installs the block to components/beste/block/about72.tsx, the location8 coverage piece it floats on the tile (installed to components/beste/piece/location8.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

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

tsx
import { About72, about72Demo } from "@/components/beste/block/about72";

export default function AboutPage() {
  return <About72 {...about72Demo} />;
}

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

tsx
import { About72 } from "@/components/beste/block/about72";
import { Location8 } from "@/components/beste/piece/location8";

export default function AboutPage() {
  return (
    <About72
      badge={{ label: "The open version" }}
      statement="We would rather you knew the awkward numbers before you asked for them"
      description="Company facts that most vendors make you dig for, current as of this month."
      factsLabel="As of May 2026"
      facts={[
        { label: "Founded", value: "March 2020, in Bristol" },
        { label: "People", value: "18, of whom 9 write code" },
        { label: "Sales team", value: "None, deliberately" },
        { label: "Longest outage", value: "41 minutes, 14 Feb 2025" },
      ]}
      media={
        <Location8
          title="Where we work from"
          region="Europe"
          sites={[
            { name: "Bristol", meta: "Registered office", value: "9 people" },
            { name: "Dublin", meta: "Support and migration", value: "5 people" },
          ]}
          total="18"
          totalLabel="people, no offices we do not use"
        />
      }
      image={{ src: "/backdrops/green.jpg", alt: "Deep green gradient backdrop" }}
      button={{ label: "Read the full company update", href: "/blog/company-update" }}
      footnote="If a figure here turns out to be stale, tell us and we will correct it."
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the statement, rendered through Badge23
statementstringSection heading, capped at max-w-3xl
descriptionstringSupporting paragraph, capped at max-w-xl
factsLabelstringSmall as-of label above the facts list
factsFact[][]Label and value pairs in the definition list
mediaReactNodeLive asset on the tile, location8 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
button{ label: string; href: string }Outline action under the facts
footnotestringCorrection note under the action
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type Fact = {
  label: string;
  value: 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.

FREE

about70

Company History Rows

A company story told as hairline rows keyed by a light year figure, set against a media column that sticks while they scroll and stacks an image tile floating a live growth metric over a captioned photograph.

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

about19

Company At a Glance

Full company overview with panoramic image, story paragraph, key facts list, leadership quote, and stats row. A rich, multi-section layout for company landing pages.

PRO

about61

Belief Statement Values

Two-column about section with a sticky eyebrow and big heading on the left and a long belief paragraph above a border-separated values list 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.