import { Changelog26 } from "@/components/beste/block/changelog26";
export default function ChangelogPage() {
return (
<Changelog26
badge={{ label: "Changelog" }}
heading="What shipped, and what it changed"
allLabel="Everything"
items={[
{
version: "v4.2",
date: "April 12, 2026",
title: "Waitlists that fill their own gaps",
description: "A cancelled slot now reopens to the waitlist in order.",
tags: [{ label: "New", tone: "primary" }, { label: "Scheduling" }],
highlights: ["Per-service waitlist rules", "Notice by email or SMS"],
link: { label: "Read the release note", href: "/changelog/4-2" },
},
{
version: "v4.1",
date: "March 28, 2026",
title: "Claims reconcile against payments",
description: "Submitted claims match themselves to incoming payments.",
tags: [{ label: "Improved", tone: "foreground" }],
},
]}
footnote={{
label: "Older releases live in the full archive.",
button: { label: "Browse all releases", href: "/changelog/archive" },
}}
/>
);
}