Steps
The <Steps> component creates a vertical timeline layout for sequential instructions. Each <Step> renders a numbered circle indicator with a connecting line, a title, and optional body content.
Basic
Code
Output
1
Install the package
Run
pnpm add ciderpress to install ciderpress.2
Create a config file
Add a
ciderpress.config.ts file to your project root.3
Build your docs
Run
pnpm build to generate your documentation site.With icons
Use the icon prop to replace the step number with an Iconify icon.
Code
Output
Download
Download the CLI from the releases page.
Configure
Set up your project configuration.
Launch
Start the development server.
With rich content
Steps can contain arbitrary MDX content, including code blocks.
Code
Output
1
Install dependencies
2
Add your config
3
Start writing
Create .mdx files in your docs directory.
Custom title size
Use titleSize on the <Steps> wrapper to change the heading level for all step titles.
Code
Output
1
Large titles
These titles render as h2 elements.
2
Consistent sizing
All steps in this group share the same heading level.