Scroll Timeline
tsx
import { ScrollTimeline } from "@/components/godui/scroll-timeline";export function Changelog() {return ( <ScrollTimeline data={[ { date: "2021", title: "The first commit", content: <p>A single component.</p> }, { date: "2023", title: "Ten thousand stars", content: <p>The community took over.</p> }, { date: "2025", title: "One hundred components", content: <p>Every surface, polished.</p> }, ]} />);}