Colophon Definition RowsPRO

A colophon written as a definition list, each hairline row naming one part of how the site is made, the choice itself, why it was made, and an optional link into the detail.

About73: Colophon Definition Rows

A colophon written as a definition list, each hairline row naming one part of how the site is made, the choice itself, why it was made, and an optional link into the detail.

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

Base UI flavor

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

This installs the block to components/beste/block/about73.tsx and the badge6 component it uses for the eyebrow (installed to components/beste/component/badge6.tsx).

Quick start

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

tsx
import { About73, about73Demo } from "@/components/beste/block/about73";

export default function ColophonPage() {
  return <About73 {...about73Demo} />;
}

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

tsx
import { About73 } from "@/components/beste/block/about73";

export default function ColophonPage() {
  return (
    <About73
      eyebrow="Colophon"
      heading="How this site is made"
      description="People ask often enough that it is easier to write it down."
      rows={[
        {
          label: "Publishing",
          value: "A folder of text files",
          note: "Every piece is a plain file in version control, edits included.",
          link: { label: "See the repository", href: "https://example.com/repo" },
        },
        {
          label: "Measurement",
          value: "Page counts only",
          note: "No cookies, no profiles and nothing that follows anyone.",
        },
      ]}
      note="Last revised in March 2026."
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringBadge6 label above the hairline rule
headingstringSection heading under the rule
descriptionstringSupporting paragraph
rowsColophonRow[][]One hairline row per decision
notestringSingle line under the list
classNamestringExtra classes for the outer section
ts
type ColophonRow = {
  label: string;
  value: string;
  note?: string;
  link?: ColophonLink;
};

type ColophonLink = {
  label: string;
  href: string;
};

Behavior notes

More About blocks

View all About
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

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

about47

Split Panel About

A hard light/dark split about panel: dark statement side and a light image-and-facts side.

PRO

about24

Company Heritage & Features

Company story with image, border-accented feature highlights, and stats row. Great for craft, heritage, and product-focused brands.

Markdown version