diff --git a/docs/quickstarts/nextjs.mdx b/docs/quickstarts/nextjs.mdx index b4bdc7e9f1..21294ce609 100644 --- a/docs/quickstarts/nextjs.mdx +++ b/docs/quickstarts/nextjs.mdx @@ -53,8 +53,8 @@ description: Add authentication and user management to your Next.js app with Cle - 1. Navigate to the Clerk Dashboard. - 1. In the navigation sidebar, select [API Keys](https://dashboard.clerk.com/last-active?path=api-keys). + 1. Navigate to the [Clerk Dashboard](https://dashboard.clerk.com/last-active?path=api-keys). + 1. In the top navigation, select **Configure**. Then in the sidebar, select **API Keys**. 1. In the **Quick Copy** section, copy your Clerk publishable and secret key. 1. Paste your keys into your `.env.local` file. @@ -102,7 +102,7 @@ description: Add authentication and user management to your Next.js app with Cle - [``](/docs/components/control/signed-in): Children of this component can only be seen while **signed in**. - [``](/docs/components/control/signed-out): Children of this component can only be seen while **signed out**. - [``](/docs/components/user/user-button): A prebuilt component that comes styled out of the box to show the avatar from the account the user is signed in with. - - [``](/docs/components/unstyled/sign-in-button): An unstyled component that links to the sign-in page or displays the sign-in modal. + - [``](/docs/components/unstyled/sign-in-button): An unstyled component that links to the sign-in page. For this example, it links to the [Account Portal sign-in page.](/docs/customization/account-portal/overview) Select your preferred router to learn how to make this data available across your entire app: @@ -157,7 +157,23 @@ description: Add authentication and user management to your Next.js app with Cle ### Create your first user - Now visit your app's homepage at [`http://localhost:3000`](http://localhost:3000). Sign up to create your first user. + Run your project with the following command: + + + ```bash {{ filename: 'terminal' }} + npm run dev + ``` + + ```bash {{ filename: 'terminal' }} + yarn dev + ``` + + ```bash {{ filename: 'terminal' }} + pnpm dev + ``` + + + Visit your app's homepage at [http://localhost:3000](http://localhost:3000). Sign up to create your first user. ## Next steps