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.
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.
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
npx shadcn add "https://ui.beste.co/r/changelog31?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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).
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.
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:
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."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label above the hairline rule |
heading | string | – | Section heading under the rule |
description | string | – | Supporting paragraph |
revisions | Revision[] | [] | One hairline entry per revision, newest first |
note | string | – | Line stating what is not logged |
className | string | – | Extra classes for the outer section |
type Revision = {
date: string;
piece: string;
href: string;
change: string;
reason?: string;
};reason is optional. Entries without one are shorter rather than padded, which suits a log where most changes need no defence.changelog6
Ultra-minimal text-only changelog with version headers and dash-prefixed change lists. No badges, no cards, just clean typography.
changelog25
Broadsheet newspaper layout with masthead, featured headline story, sidebar briefs, and numbered patch notes in flowing columns.
changelog12
Poster-style changelog with oversized version numbers as visual anchors, followed by date, heading, and description text.
changelog3
Release feed cards with aligned change labels, summaries, and optional CTA buttons.