Logo

Getting Started

IntroductionInstallationQuick Start
Logo
DocumentationAPI ReferenceChangelog

Components

Steps

Create numbered step-by-step guides with visual indicators

Overview

The <Steps> component creates numbered, sequential guides with visual connectors. Perfect for tutorials, installation guides, and multi-step processes.

Basic Usage

1

Install Dependencies

Run npm install to install all required packages.

2

Configure Environment

Create a .env file with your API keys.

3

Start Development

Run npm run dev to start the development server.

Rich Content

Steps support complex content including code blocks, lists, and nested components:

1

Install Package

Install the SDK using your preferred package manager:

npm install @acme/sdk

Or using yarn:

yarn add @acme/sdk
2

Import and Initialize

Import the SDK in your application:

import { AcmeClient } from '@acme/sdk';

const client = new AcmeClient({
  apiKey: process.env.ACME_API_KEY
});

Never hardcode API keys in your source code.

3

Make Your First Request

Send a test request to verify setup:

const response = await client.users.list();
console.log(response);

Without Titles

Steps can omit titles for simpler flows:

1

First, navigate to your project directory.

2

Then, run the installation command.

3

Finally, start the development server.

Props

title
string

The title of the step, displayed prominently.

<Step title="Create API Key">Navigate to the dashboard...</Step>
children
ReactNoderequired

The content of the step. Supports full Markdown formatting.

<Step title="Setup">
  You can include **bold**, *italic*, `code`, and [links](/docs).
</Step>

Next, learn about the Tabs Component for organizing content.

Built with Chakra UI

On this page
OverviewBasic UsageRich ContentWithout TitlesProps