Steps
Use numbered steps when readers need to follow a process in a strict sequence.
Steps work best when order matters and each item includes more than a one-line instruction. ## Use in MDX Use Steps as the wrapper and Step for each item: mdx <Steps> <Step number="1" title="Install dependencies"> Run `npm install`. </Step> <Step number="2" title="Start the dev server"> Run `npm run dev`. </Step> </Steps> ## Implementation notes The wrapper and item components live in src/components/docs/Steps.astro and src/components/docs/Step.astro. The visual styling is controlled by the .docs-step* rules in src/index.css. ## Preview
- 1First StepThese are instructions or content that only pertain to the first step.
- 2Second StepThese are instructions or content that only pertain to the second step.
- 3Third StepThese are instructions or content that only pertain to the third step.