ZuploZuplo
LoginSign Up
  • Documentation
  • API Reference
Introduction
Getting Started
    Develop using the Portal
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingMCP - Quick start
    Develop Locally
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth
Concepts
Development
Policies
Handlers
API Keys
MCP Server
MCP Gateway
AI Gateway
Developer Portal
    IntroductionLocal DevelopmentUpdating VersionsNode Modules & Customization
    Configuration
    Writing
    OpenAPI
    Authentication
    Integrations
    Guides
    Extending
    Components
      General
      Documentation
        CodeTabsMermaidAPI PlaygroundSecretStepperSyntax Highlight
      Form
      Utility
Monetization
Deploying & Source Control
Observability
Networking & Infrastructure
Account Management
Programming API
Build with AI
Zuplo CLI
Migration Guides
Platform LimitsSecuritySupportTrust & ComplianceChangelog
powered by Zudoku
Documentation

Stepper

A vertical stepper component that displays a sequence of steps with automatic numbering and visual connections between steps. Perfect for multi-step processes, tutorials, or guided workflows.

In MDX components, the Stepper component is available by default and doesn't need an explicit import.

Import

Code
import { Stepper } from "zudoku/ui/Stepper";

Usage

Wrap Markdown lists with the Stepper component to create a vertical stepper like this:

Code
<Stepper> 1. **Identify the Problem** 1. **Plan Your Project** 1. **Build Your Solution** 1. **Test and Deploy** </Stepper>
  1. Identify the Problem
  2. Plan Your Project
  3. Build Your Solution
  4. Test and Deploy

Advanced Example

  1. Identify the Problem

    Begin by identifying the problem you're trying to solve. This foundational step ensures you're building the right solution for your needs.

  2. Plan Your Project

    Define your project requirements and goals. This ensures you're building the right solution for your needs.

    Make sure you have gathered all the information you need before you start planning your project.

  3. Build Your Solution

    With a solid plan in place, start implementing your solution. Break down complex tasks into manageable pieces and track your progress.

    • Create component structure
    • Implement core functionality
    • Add styling and polish
  4. Test and Deploy 🚀

    TerminalCode
    pnpm build pnpm test pnpm deploy --prod
See Markdown for example above 👆
Edit this page
Last modified on May 29, 2026
SecretSyntax Highlight
On this page
  • Import
  • Usage
  • Advanced Example
React
React
Code
<Stepper> 1. **Identify the Problem** Begin by identifying the problem you're trying to solve. This foundational step ensures you're building the right solution for your needs. 1. **Plan Your Project** Define your project requirements and goals. This ensures you're building the right solution for your needs. :::info Make sure you have gathered all the information you need before you start planning your project. ::: 1. **Build Your Solution** With a solid plan in place, start implementing your solution. Break down complex tasks into manageable pieces and track your progress. - Create component structure - Implement core functionality - Add styling and polish 1. **Test and Deploy** 🚀 <!-- prettier-ignore-start --> ```sh pnpm build pnpm test pnpm deploy --prod ``` <!-- prettier-ignore-end --> </Stepper>