A changelog page section with a serif headline that settles in word by word and a sliding-marker pill at the right end of the header, then a ruled list of releases. Each release keeps its version number and date pinned on the left while the title, summary and a plain dotted list of changes settle in on the right.
Changelog32: Ruled Changelog
Releases as ruled rows with the version number and date pinned on the left while the title, the summary and the list of changes run down the right.
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.
This installs the block to components/beste/block/changelog32.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
Quick start
The installed file exports changelog32Demo alongside the block: the exact props behind the preview above. Spread it to get a working page in one line.
tsx
import { Changelog32, changelog32Demo } from "@/components/beste/block/changelog32";export default function Page() { return <Changelog32 {...changelog32Demo} />;}
Then replace the demo with your own props. Written out, a trimmed setup looks like this:
tsx
import { Changelog32 } from "@/components/beste/block/changelog32";export default function Page() { return ( <Changelog32 eyebrow="Changelog" heading="What changed, and when." description="Every release, in order, with the small things included." buttons={[{ label: "Subscribe to updates", href: "/updates", tone: "outline" }]} entries={[ { version: "2.4", date: "4 September 2026", title: "Motion that respects the reader", description: "Every entrance now checks the reduced motion setting before it moves.", changes: ["Reduced motion support across all sections", "Photographs wait for their file"], }, ]} /> );}
The version column is sticky from the medium breakpoint up, so a long release stays labelled while you read to the end of its changes.
Changes are a plain dotted list rather than tagged pills. A short label like Improved set in tracked small caps overflows its pill at some widths, which is why the set does not use them.
The dot markers are aria-hidden spans rather than list-style bullets, which is what lets them sit on the first line of a change that wraps.
Each release is an article with its own heading, so the page outlines correctly when there are twenty of them.
The heading renders as an h1 because this block is built to be the whole changelog page rather than a section within one.
All entries share one transition delay instead of a per-index stagger, since a long changelog would otherwise leave later releases arriving after they are already in view.
Nothing here loads or listens: no image, no scroll handler, no timer.
Releases as points on a vertical line that draws itself in ink as the page scrolls: version and date on the left of the line, a serif title, a paragraph and a plain dotted list of changes on the right. Serif headline settles in word by word with a sliding-marker pill at the header's right end.
PRO
changelog33
Month Index Changelog
A changelog grouped by month with a sticky index on the left: each month is a button that scrolls the page to its group, a short rule grows beside the current one, and the index follows as you scroll. Entries on the right show the day, a title and a plain dotted list of changes. Serif headline settles in word by word, one sliding-marker pill in the header.
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
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
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.