Two-Column Date Changelog
Minimal changelog laid out as divided two-column rows, a fixed-width date column on the left and the version heading with a plain change list on the right, repeated down the page with no cards, badges, or extra chrome.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/two-column-date-changelog.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/changelog/changelog11.tsx instead.
Usage
The file also exports changelog11Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { Changelog11, changelog11Demo } from "@/components/blocks/changelog/changelog11"; export default function Page() { return <Changelog11 {...changelog11Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | "Changelog" | Page heading above the rows. |
| releases | DateRelease[] | none | Releases to render as rows, most recent first. |
| className | string | none | Extra classes for the outer section element. |
Types
interface DateRelease { version: string; date: string; changes: string[]; }
Behavior notes
- Deliberately has no tags or badges to keep the minimal two-column brief honest; the version heading and dash-bulleted change list are the only visual elements in the right column.
- The date column is a fixed `w-28` so dates of varying length still align the version/changes column consistently across rows.
- Fully static: no client-side state, links, or interactive elements anywhere in the block.
More Changelog Blocks
View all →split-milestone-changelog
Split Milestone Changelog
Two-column release entries pairing milestone context with highlights and metrics.
changelog-release-feed
Changelog Release Feed
Release feed cards with aligned change-type labels and an optional CTA per card.
grouped-changelog-board
Grouped Changelog Board
Releases grouped under bold month headings with aligned version and description columns.
milestone-changelog-timeline
Milestone Changelog Timeline
Vertical timeline of releases with a connecting line, version badges, and tone-coded change types.
minimal-text-changelog
Minimal Text Changelog
Ultra-plain, text-only changelog with no badges, cards, or borders.
categorized-release-notes
Categorized Release Notes
Per-release changes grouped into Added, Changed, and Fixed sub-sections.