Plan
One source of truth
Issues, docs, and roadmaps live on a single surface your whole team trusts.
12 projectsin sync
Track
Progress you can see
Live insight into velocity and scope — no spreadsheets, no status meetings.
98.2%on-time delivery
Ship
From plan to production
Move work from idea to release without losing the thread along the way.
240msmedian deploy
Scroll Stack
tsx
import { ScrollStack } from "@/components/godui/scroll-stack";const cards = [{ eyebrow: "01 — Capture", title: "Everything in one place", body: "Pin ideas, tasks, and docs to a single surface that scrolls with you." },{ eyebrow: "02 — Organize", title: "Structure that scales", body: "Group work into projects and views without losing the thread." },{ eyebrow: "03 — Ship", title: "Move from plan to done", body: "Track progress and hand off — the stack keeps the story intact." },];export function FeatureStack() {return ( <ScrollStack height="30rem" pinTop="10%" className="max-w-xl rounded-xl border border-border"> {cards.map((c) => ( <article key={c.title} className="w-full rounded-2xl border border-border bg-card p-10 shadow-xl"> <p className="text-xs font-medium uppercase tracking-wider text-muted-foreground">{c.eyebrow}</p> <h3 className="mt-3 text-2xl font-semibold text-foreground">{c.title}</h3> <p className="mt-2 text-muted-foreground">{c.body}</p> </article> ))} </ScrollStack>);}