Left intro with image, right vertical timeline with staggered scroll-reveal animation. Numbered steps with sliding content. For startup journeys.
Left column carries an intro (badge, heading, description, and photo); right column is a vertical numbered timeline where each milestone animates into view independently as it scrolls into the viewport. Built for startup "our journey" narratives with a handful of dated milestones.
Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.
Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.
Radix flavor
npx shadcn add "https://ui.beste.co/r/about27?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/about27?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/about27.tsx and the badge and button shadcn/ui primitives it depends on.
The installed file exports about27Demo alongside the block: the exact props behind the preview above. Spread it to get a working about section in one line.
import { About27, about27Demo } from "@/components/beste/block/about27";
export default function AboutPage() {
return <About27 {...about27Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { About27 } from "@/components/beste/block/about27";
export default function AboutPage() {
return (
<About27
badge={{ label: "Our Journey", variant: "outline" }}
heading="From a garage to the global stage"
description="What started as two people and a laptop has grown into a global platform."
image={{
src: "https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=900&h=500&fit=crop",
alt: "Team working together in an office",
}}
milestones={[
{ year: "2016", title: "The spark", description: "Founded in a shared apartment." },
{ year: "2017", title: "First 1,000 users", description: "Launched on Product Hunt." },
{ year: "2019", title: "Series A", description: "Raised $12M to expand the team." },
]}
buttons={[{ label: "Read Our Story", href: "https://beste.co" }]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Eyebrow badge above the heading |
heading | string | – | Left-column section heading |
description | string | – | Left-column lead paragraph |
image | { src: string; alt: string } | – | Photo below the description in the left column |
milestones | MilestoneItem[] | [] | Vertical timeline rendered in the right column |
buttons | ButtonItem[] | [] | Centered CTA row at the bottom |
className | string | – | Extra classes for the outer <section> |
type MilestoneItem = { year: string; title: string; description: string };
type ButtonItem = {
label: string;
href?: string;
variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};TimelineItem component with its own IntersectionObserver (threshold 0.2); every milestone reveals independently as it individually scrolls into view, rather than one observer staggering the whole list on a single trigger.scale-50 opacity-0 to full size, content sliding up from translate-y-4 opacity-0) plays exactly once per row and never re-triggers.100ms inline transitionDelay, so the text always finishes its fade-and-rise slightly after the circle has scaled in.index + 1), independent of the year field, which is shown separately as a small primary-colored label above the title.w-px vertical line (bg-border) that grows with flex-1; the wrapping row loses its bottom padding on the final item (last:pb-0), shortening the trailing line since there is no further row for it to reach.about30
Panoramic image with split header showing numbered process steps alongside. For studios and creative agencies.
about3
Two-column layout with company stats on the left and a vertical timeline of milestones on the right. Ideal for company history and growth stories.
about28
Full-width animated marquee stats ticker, split layout with intro text and leadership avatars on the left, full-height image on the right. For SaaS and product companies.
about25
Side-by-side intro with animated number counters on scroll, expanding accent bars, and hover-lift value cards. For impact-driven companies.
about32
Centered heading with description, followed by two images side-by-side. Configurable image ratio (equal, left larger, right larger). Always horizontal on mobile.
about5
Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.