# Beste UI

> Beautiful, accessible blocks, pieces and components for shadcn/ui and Tailwind CSS, built for React and Next.js. Install one with the shadcn CLI and the code is yours to edit: no runtime dependency, nothing to upgrade.

Markdown rendition of https://ui.beste.co/block/usecase3. Every page on the site has one: add `.md` to any address, or send `Accept: text/markdown`.

Last updated: 2025-12-23

Whole catalog for LLMs: https://ui.beste.co/llms.txt. Registry index: https://ui.beste.co/r/registry.json

---
1. /
2. [Blocks](/blocks)
3. /
4. [Use Case](/blocks/use-case)
5. /
6. Numbered Steps Process

# 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.

ViewCodeDocs

Base UI

![](https://oud.pics/sm/l/npm.svg)`npx shadcn add https://ui.beste.co/r-base/usecase3`

## 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**

bashCopy

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

**Base UI flavor**

bashCopy

```
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.

tsxCopy

```
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:

tsxCopy

```
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

| Prop        | Type                                                | Default     | Description                           |                                                                 |
| ----------- | --------------------------------------------------- | ----------- | ------------------------------------- | --------------------------------------------------------------- |
| badge       | { label: string; variant?: "default" \| "secondary" | "outline" } | –                                     | Pill shown above the heading; omitted when badge.label is falsy |
| heading     | string                                              | –           | Section heading                       |                                                                 |
| description | string                                              | –           | Section intro text                    |                                                                 |
| steps       | UseCaseStep\[\]                                     | –           | Ordered process steps                 |                                                                 |
| className   | string                                              | –           | Extra classes for the outer <section> |                                                                 |

tsCopy

```
type UseCaseStep = {
  id: string;
  title: string;
  description: string;
  image?: { src: string; alt: string };
  features?: UseCaseFeature[];
};

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

### Behavior notes

* The step number shown in the round badge is derived from array position, not any field on `UseCaseStep`: `String(index + 1).padStart(2, "0")`, so it is always sequential regardless of `id`.
* Rows alternate sides purely by index parity: even-indexed steps (0, 2, ...) keep content on the left and image on the right; odd-indexed steps flip both with `md:order-1`/`md:order-2`. This only takes effect at `md` and above; on mobile every step stacks content above image.
* Every step gets `md:mb-16` spacing except the last one, so there is no trailing gap after the final step.
* The image side renders nothing (not even an empty frame) when `step.image` is omitted; the content side is unaffected either way.

## More Use Case blocks

[View all Use Case](/blocks/use-case)

[](/block/usecase8)

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.

[](/block/usecase15)

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.

[](/block/usecase12)

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.

[](/block/usecase52)

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.

[](/block/usecase37)

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.

[](/block/usecase14)

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.

## Ship the interface, keep the code.

New blocks, pieces and components every week. Install one with a command and it is yours to edit. No runtime dependency, no upgrade path to fight.

[Browse the libraryBrowse the library](/blocks)[See pricingSee pricing](/pricing)

### Library

* [Blocks](/blocks)
* [Pages](/pages)
* [Pieces](/pieces)
* [Components](/components)
* [Search](/search)

### Learn

* [Docs](/docs)
* [AI & MCP](/docs/mcp)
* [Blog](/blog)
* [Free tools](/tools)
* [What's new?](/changelog)
* [Website Builder](https://beste.co)

### More

* [Pricing](/pricing)
* [Referrals](/referrals)
* [License](/license)
* [GitHub](https://github.com/beste-co/beste-ui)

### Shadcn Blocks

* [Shadcn Hero Blocks](/blocks/hero)
* [Shadcn Feature Blocks](/blocks/feature)
* [Shadcn Pricing Blocks](/blocks/pricing)
* [Shadcn CTA Blocks](/blocks/cta)
* [Shadcn FAQ Blocks](/blocks/faq)
* [Shadcn About Blocks](/blocks/about)
* [Shadcn Stats Blocks](/blocks/stats)
* [Shadcn Footer Blocks](/blocks/footer)
* [Shadcn Navigation Blocks](/blocks/navigation)
* [Shadcn Auth Blocks](/blocks/auth)
* [Shadcn Ecommerce Blocks](/blocks/ecommerce)
* [Shadcn Portfolio Blocks](/blocks/portfolio)
* [Shadcn Showcase Blocks](/blocks/showcase)
* [Shadcn Careers Blocks](/blocks/careers)
* [Shadcn Onboarding Blocks](/blocks/onboarding)
* [Shadcn Coming Soon Blocks](/blocks/coming-soon)
* [Shadcn Post Blocks](/blocks/post)
* [Shadcn Legal Blocks](/blocks/legal)
* [Shadcn Workflow Blocks](/blocks/workflow)
* [Shadcn News Blocks](/blocks/news)

© 2026, [Beste](https://beste.co). All rights reserved.