Editorial Revision LogPRO

A revision log for writing rather than software, each entry dating the change, linking the piece it belongs to, stating what was altered and, where it exists, the reason on an accent rule.

Changelog31: Editorial Revision Log

A revision log for writing rather than software, each entry dating the change, linking the piece it belongs to, stating what was altered and, where it exists, the reason on an accent rule.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Changelog31, changelog31Demo } from "@/components/beste/block/changelog31";

export default function RevisionsPage() {
  return <Changelog31 {...changelog31Demo} />;
}

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

tsx
import { Changelog31 } from "@/components/beste/block/changelog31";

export default function RevisionsPage() {
  return (
    <Changelog31
      eyebrow="Revisions"
      heading="What changed after publishing"
      description="Pieces are corrected in place rather than quietly reposted."
      revisions={[
        {
          date: "14 March 2026",
          piece: "Writing an estimate you can defend",
          href: "/essays/estimates",
          change: "Rewrote the section on contingency and removed the worked example.",
          reason: "Three readers used the example as a rule, which is the opposite of the point.",
        },
      ]}
      note="Typos and broken links are fixed without a note."
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringBadge6 label above the hairline rule
headingstringSection heading under the rule
descriptionstringSupporting paragraph
revisionsRevision[][]One hairline entry per revision, newest first
notestringLine stating what is not logged
classNamestringExtra classes for the outer section
ts
type Revision = {
  date: string;
  piece: string;
  href: string;
  change: string;
  reason?: string;
};

Behavior notes

More Changelog blocks

View all Changelog
PRO

changelog6

Minimal Text Changelog

Ultra-minimal text-only changelog with version headers and dash-prefixed change lists. No badges, no cards, just clean typography.

PRO

changelog25

Newspaper Changelog

Broadsheet newspaper layout with masthead, featured headline story, sidebar briefs, and numbered patch notes in flowing columns.

PRO

changelog12

Large Version Changelog

Poster-style changelog with oversized version numbers as visual anchors, followed by date, heading, and description text.

PRO

changelog3

Changelog Release Feed

Release feed cards with aligned change labels, summaries, and optional CTA buttons.

PRO

changelog22

Terminal Git Log Changelog

Dark terminal window styled as a git log output with commit hashes, version tags, color-coded change prefixes, and a blinking cursor.

FREE

changelog28

Full Release Notes By Month

A complete changelog grouped by month, each version on a hairline row beside its entries, every line tagged added, changed, fixed, or removed with its own tone.

Markdown version