Numbered Steps ProcessFREE

Vertical numbered steps with alternating left-right image positions, descriptions, and feature lists. Perfect for explaining multi-step processes or onboarding flows.

UseCase3: Numbered Steps Process

Vertical process walkthrough where each step alternates its image between the left and right side of the row: a numbered badge, title, description, and feature checklist sit on one side while a bordered screenshot sits on the other.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/usecase3"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/usecase3"

This installs the block to components/beste/block/usecase3.tsx and the badge shadcn/ui primitive it depends on.

Quick start

The installed file exports usecase3Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.

tsx
import { UseCase3, usecase3Demo } from "@/components/beste/block/usecase3";

export default function Page() {
  return <UseCase3 {...usecase3Demo} />;
}

Then replace the demo with your own props. Written out, the same setup looks like this:

tsx
import { UseCase3 } from "@/components/beste/block/usecase3";

export default function Page() {
  return (
    <UseCase3
      badge={{ label: "How It Works", variant: "secondary" }}
      heading="Simple Steps to Success"
      description="Follow our proven process to reach your goals faster."
      steps={[
        {
          id: "step1",
          title: "Create Your Account",
          description: "Sign up in seconds with your email or social accounts.",
          image: { src: "https://images.unsplash.com/photo-1551288049-bebda4e38f71", alt: "Sign up screen" },
          features: [{ id: "f1", text: "No credit card required" }],
        },
        {
          id: "step2",
          title: "Configure Your Workspace",
          description: "Invite your team and connect the tools you already use.",
          image: { src: "https://images.unsplash.com/photo-1551288049-bebda4e38f72", alt: "Configuration dashboard" },
          features: [{ id: "f2", text: "Role-based permissions" }],
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Pill shown above the heading; omitted when badge.label is falsy
headingstringSection heading
descriptionstringSection intro text
stepsUseCaseStep[]Ordered process steps
classNamestringExtra classes for the outer <section>
ts
type UseCaseStep = {
  id: string;
  title: string;
  description: string;
  image?: { src: string; alt: string };
  features?: UseCaseFeature[];
};

type UseCaseFeature = { id: string; text: string };

Behavior notes

More Use Case blocks

View all Use Case
FREE

usecase8

Vertical Timeline

Centered timeline with alternating left-right content cards, icons, images, and feature lists. Perfect for showing project phases, company history, or process stages.

PRO

usecase15

Step Wizard Navigator

Interactive step-by-step wizard with progress bar, clickable step indicators, images, and contextual tips. Perfect for onboarding flows or multi-step process explanations.

PRO

usecase12

Workflow Stage Tabs

Tab navigation showing workflow stages with split image cards featuring stats overlays and descriptions. Perfect for demonstrating product workflow or development process stages.

PRO

usecase52

Placement Mosaic Grid

Six application tiles alternating between landscape and portrait crops, each captioned on a rule with where the work lands, what it is applied to and the constraint it has to survive.

PRO

usecase37

Detailed Feature Cards

Two-column grid of feature cards with icons, extended descriptions, and bullet point highlights. Perfect for comprehensive product feature or capability explanations.

PRO

usecase14

Segmented Control Tabs

Segmented control style tabs with split layout showing image, description, and bullet point features. Perfect for comparing solution approaches or product capabilities.

Markdown version