Files
Ethan Palm 4c31f3683c SEO: add keywords to pages (#1775)
* ai/ keywords

* api/ keywords

* components/ keywords

* create/ keywords

* customize/ keywords

* api-playground/ keywords

* dashboard/ keywords

* deploy/ keywords

* guides/ keywords

* insights/ keywords

* integrations/ keywords

* optimize/ keywords

* organize/ keywords

* root/ keywords

* rm temp files
2025-11-14 14:08:24 -08:00

66 lines
1.9 KiB
Plaintext

---
title: "Steps"
description: "Create numbered step-by-step procedures."
keywords: ["sequence", "numbered steps", "procedures", "tutorial steps"]
---
import IconsOptional from "/snippets/icons-optional.mdx";
Use steps to display a series of sequential actions or events. You can add as many steps as needed.
<Steps>
<Step title="First Step">
These are instructions or content that only pertain to the first step.
</Step>
<Step title="Second Step">
These are instructions or content that only pertain to the second step.
</Step>
<Step title="Third Step">
These are instructions or content that only pertain to the third step.
</Step>
</Steps>
```mdx Steps example
<Steps>
<Step title="First Step">
These are instructions or content that only pertain to the first step.
</Step>
<Step title="Second Step">
These are instructions or content that only pertain to the second step.
</Step>
<Step title="Third Step">
These are instructions or content that only pertain to the third step.
</Step>
</Steps>
```
## Steps properties
<ResponseField name="children" type="ReactElement<StepProps>[]" required>
A list of `Step` components.
</ResponseField>
<ResponseField name="titleSize" type="string" default="p">
The size of the step titles. One of `p`, `h2`, and `h3`.
</ResponseField>
## Individual step properties
<ResponseField name="children" type="string | ReactNode" required>
The content of a step either as plain text or components.
</ResponseField>
<IconsOptional />
<ResponseField name="title" type="string">
The title is the primary text for the step and shows up next to the indicator.
</ResponseField>
<ResponseField name="stepNumber" type="number">
The number of the step.
</ResponseField>
<ResponseField name="titleSize" type="string" default="p">
The size of the step titles. One of `p`, `h2`, and `h3`.
</ResponseField>