GodUIGodUI
113Follow on X
Scroll the timeline

2021

A single component and a big idea — a design system that feels alive, not templated.

2023

The community took over. Contributions poured in and the library tripled in a single quarter.

2025

From buttons to WebGL globes, every surface got the same obsessive motion polish.

Today

Scroll back up and watch the line trace your journey. The next chapter is yours to write.

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> },    ]}  />);}