Staaarter

Grouped Changelog Board

Releases grouped by month, each month a bold uppercase heading, with a consistent-width version column beside a description column and an optional "Read more" link, so entries stay scannable across every group.

By Staaarter Team
Changelog
Docs
Live preview

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/grouped-changelog-board.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/changelog/changelog4.tsx instead.

Usage

The file also exports changelog4Demo, 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 { Changelog4, changelog4Demo } from "@/components/blocks/changelog/changelog4";

export default function Page() {
  return <Changelog4 {...changelog4Demo} />;
}

Props

PropTypeDefaultDescription
headingstring"Changelog"Section heading.
descriptionstringnoneSection intro text.
groupsMonthGroup[]noneMonth-grouped releases, rendered in array order.
classNamestringnoneExtra classes for the outer section element.

Types

type GroupedRelease = {
  version: string;
  description: string;
  href?: string;
};

type MonthGroup = {
  month: string;
  releases: GroupedRelease[];
};

Behavior notes

  • month is a plain display string (e.g. "March 2026") supplied by the caller; it is never derived from a date object at render time, so the grouping and the heading text can never drift apart or vary between server and client render.
  • The version column uses a fixed w-24 width so descriptions line up across every release in every group, regardless of version-string length.
  • href is optional per release; the "Read more" link only renders when it is set, so entries without a linked detail page don't show a dead link.
  • The "Read more" link is a plain Next.js Link, not the Button primitive; it is decorative in this demo since there is no real release-detail page behind it.