Milestone Timeline
About section with a header (eyebrow, heading, description) and a vertical timeline of milestones on a left rail, a vertical line with dot markers, each entry marked by a year badge, title, and description.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/milestone-timeline.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about62.tsx instead.
Usage
The file also exports about62Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { About62, about62Demo } from "@/components/blocks/about/about62"; export default function Page() { return <About62 {...about62Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | undefined | Small label above the heading. |
| heading | string | none | Section heading. |
| description | string | undefined | Supporting copy under the heading. |
| milestones | Milestone[] | none | Ordered list rendered as a vertical timeline. |
| className | string | none | Extra classes for the outer section element. |
Types
type Milestone = { year: string; title: string; description: string; };
Behavior notes
- Unlike About3, which pairs its vertical timeline with a stats column in a two-up grid, About62 runs the header full-width above the timeline and the timeline alone below it, in a single narrower max-w-3xl column.
- Each milestone's year renders as an outline Badge rather than About3's plain colored text, giving every entry a consistent pill shape regardless of year-string length.
- The timeline rail uses a background-colored ring around each dot (border-2 border-background) so the marker reads as a solid dot cut out of the line, instead of About3's plain filled circle with no ring.
More About Blocks
View all →team-mission
Team & Mission
Two-column about section with mission statement, company stats, and team member grid.
values-with-team-photo
Values with Team Photo
Full-width photo with a three-column values grid below.
timeline-milestones
Timeline & Milestones
Company stats on the left and a vertical timeline of milestones on the right.
founder-quote-team
Founder Quote & Team
Founder blockquote with avatar, followed by a horizontal team member row.
image-text-split
Image & Text Split
Tall image on the left, company story, inline stats, and CTAs on the right.
numbered-principles
Numbered Principles
Heading on the left and numbered company principles on the right.