Spec Sheet About

About styled as a technical spec sheet with coordinate marks, a data column and a portrait.

PRO

About52: Spec Sheet About

An about section styled like a technical spec sheet: a header band pairs the eyebrow badge with a monospace-feeling coordinate/reference code, then a two-column body pairs a portrait and a definition-list of specs against a heading, description, CTA, and an indexed tag row pinned to the bottom of its column.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About52, about52Demo } from "@/components/beste/block/about52";

export default function AboutPage() {
  return <About52 {...about52Demo} />;
}

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

tsx
import { About52 } from "@/components/beste/block/about52";

export default function AboutPage() {
  return (
    <About52
      label="The company"
      code="REF NB-014, 40.7N 74.0W"
      heading="We engineer products the way <strong>good machines</strong> are engineered."
      description="We treat every product like a designed object: drawn to spec, tested under load."
      button={{ label: "Request the dossier", href: "https://beste.co" }}
      image={{
        src: "https://images.unsplash.com/photo-1780789593650-48747aef6895?w=800&h=1000&fit=crop",
        alt: "Team reviewing printed specifications",
      }}
      specs={[
        { label: "Founded", value: "2016, New York" },
        { label: "Team", value: "9 specialists" },
        { label: "Stack", value: "Product, Web, Motion" },
      ]}
      tags={["Product systems", "Editorial", "Motion"]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow badge text in the header band
codestringReference-code style string on the right of the header band
headingstringStatement heading; supports inline <strong> for primary-colored highlights
descriptionstringSupporting paragraph under the heading
buttonActionLinkCTA rendered as a Button1 under the description
imageImageItemPortrait in the left data column
specsSpecItem[][]Label/value rows rendered as a definition list under the portrait
tagsstring[][]Indexed tag row pinned to the bottom of the right column
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };
type ImageItem = { src: string; alt: string };
type SpecItem = { label: string; value: string };

Behavior notes

More About blocks

View all About
PRO

about39

Numeral About

About anchored by an oversized numeral with a paragraph and a horizontal image strip.

PRO

about58

About Statement Card

About section on a soft muted card with a monospace parenthetical eyebrow, a bold studio wordmark, a large centered statement, a logos strip, and a four-column stats band.

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

about42

Framed Studio Card

About composed inside a bordered studio card with header marks, portrait and a stats strip.

PRO

about44

Marquee Accent About

Layered about over a faint scrolling studio-word marquee with offset images and stats.

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.