Steps
Transform an ordered list into a visually structured step-by-step guide.
Usage
Wrap an ordered list inside the <Steps> component, as shown below:
mdx
<Steps>1. We recommend starting a new Next.js app using create-next-app, which sets up everything automatically for you. To create a project, run:```terminalnpx create-next-app@latest```1. On installation, you'll see the following prompts:```terminalWhat is your project named? my-appWould you like to use TypeScript? No / YesWould you like to use ESLint? No / YesWould you like to use Tailwind CSS? No / YesWould you like your code inside a `src/` directory? No / YesWould you like to use App Router? (recommended) No / YesWould you like to use Turbopack for `next dev`? No / YesWould you like to customize the import alias (`@/*` by default)? No / YesWhat import alias would you like configured? @/*```1. After the prompts, `create-next-app` will create a folder with your project name and install the required dependencies.</Steps>
The following shows how it is displayed:
- We recommend starting a new Next.js app using create-next-app, which sets up everything automatically for you. To create a project, run:
terminalnpx create-next-app@latest
- On installation, you'll see the following prompts:
terminalWhat is your project named? my-appWould you like to use TypeScript? No / YesWould you like to use ESLint? No / YesWould you like to use Tailwind CSS? No / YesWould you like your code inside a `src/` directory? No / YesWould you like to use App Router? (recommended) No / YesWould you like to use Turbopack for `next dev`? No / YesWould you like to customize the import alias (`@/*` by default)? No / YesWhat import alias would you like configured? @/*
- After the prompts,
create-next-appwill create a folder with your project name and install the required dependencies.