import { Changelog35 } from "@/components/beste/block/changelog35";
export default function Page() {
return (
<Changelog35
eyebrow="Changelog"
heading="The latest, then everything before it."
description="One release gets the room. The rest are a glance away."
buttons={[{ label: "Subscribe", href: "/updates", tone: "outline" }]}
latestLabel="Latest release"
latest={{
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"],
image: { src: "/photos/bay.jpg", alt: "A small rocky bay below a wooded hillside" },
button: { label: "Read the notes", href: "/changelog/2-4" },
}}
earlierLabel="Earlier"
earlier={[
{ version: "2.3", date: "21 Aug 2026", title: "Yearly pricing", summary: "Monthly and yearly switch.", href: "/changelog/2-3" },
]}
/>
);
}