2.4
4 September 2026
Every entrance and parallax now checks the reduced motion setting before it moves.
2.3
21 August 2026
Pricing sections gained a monthly and yearly switch, with the saving shown next to it.
2.2
2 August 2026
The hero photo is requested before the fonts, which brought the first frame forward on slow connections.
2.1
12 July 2026
Nineteen small text components that share the language of the sections around them.
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.
Releases as points on a vertical line that draws itself in ink as you scroll, with the version and date on one side of it and the notes on the other.
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/changelog34?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/changelog34?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/changelog34.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports changelog34Demo alongside the block: the exact props behind the preview above. Spread it to get a working page in one line.
import { Changelog34, changelog34Demo } from "@/components/beste/block/changelog34";
export default function Page() {
return <Changelog34 {...changelog34Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Changelog34 } from "@/components/beste/block/changelog34";
export default function Page() {
return (
<Changelog34
eyebrow="Release notes"
heading="A line through the year."
description="Each release is a point on the line."
buttons={[{ label: "Subscribe", 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.",
changes: ["Reduced motion support across all sections"],
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Page heading, rendered as the h1 through Text1 |
description | string | – | Paragraph under the heading |
buttons | ActionButton[] | [] | Pill actions at the right end of the header |
entries | Entry[] | [] | Releases, newest first |
className | string | – | Extra classes for the outer <section> |
type Entry = {
version: string;
date: string;
title: string;
description: string;
changes: string[];
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};scaleY transform driven by the list's own scroll progress, laid over a static hairline so the undrawn part of the line is still visible.start 70% to end 70%, which means the line tracks a point about two thirds down the viewport rather than the top edge, and lands on each release roughly as you reach it.changelog32
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.
changelog33
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.
changelog35
The newest release gets a full row: a photograph that blurs in and drifts on scroll beside its version, date, serif title, paragraph, plain change list and a sliding-marker pill. Earlier releases follow as compact ruled rows (version, date, title, one line) that link out and tint on hover.
changelog12
Poster-style changelog with oversized version numbers as visual anchors, followed by date, heading, and description text.