Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ This guide demonstrates how to use Clerk's API to build a custom flow for handli
<Tabs items={["Next.js"]}>
<Tab>
<CodeBlockTabs options={["Sign up page", "Verify page"]}>
```tsx {{ filename: 'app/sign-up/page.tsx', collapsible: true }}
```tsx {{ filename: 'app/sign-up/[[...sign-up]]/page.tsx', collapsible: true }}
'use client'

import * as React from 'react'
Expand Down Expand Up @@ -276,7 +276,7 @@ This guide demonstrates how to use Clerk's API to build a custom flow for handli
<Tabs items={["Next.js"]}>
<Tab>
<CodeBlockTabs options={["Sign in page", "Verify page"]}>
```tsx {{ filename: 'app/sign-in/page.tsx', collapsible: true }}
```tsx {{ filename: 'app/sign-in/[[...sign-in]]/page.tsx', collapsible: true }}
'use client'

import * as React from 'react'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ You must configure your application instance through the Clerk Dashboard for the
<Include src="_partials/custom-flows/sso-connections" />

<CodeBlockTabs options={["Sign in page", "SSO callback page"]}>
```tsx {{ filename: 'app/sign-in/page.tsx' }}
```tsx {{ filename: 'app/sign-in/[[...sign-in]]/page.tsx' }}
'use client'

import * as React from 'react'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The `lastAuthenticationStrategy` property is available on the [`Client`](/docs/r
1. Check the `lastAuthenticationStrategy` property to identify which OAuth provider was last used.
1. Display a badge next to the corresponding OAuth button.

```tsx {{ filename: 'app/sign-in/page.tsx' }}
```tsx {{ filename: 'app/sign-in/[[...sign-in]]/page.tsx' }}
'use client'

import * as React from 'react'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ You must configure your application instance through the Clerk Dashboard for the
<Include src="_partials/custom-flows/sso-connections" />

<CodeBlockTabs options={["Sign in page", "SSO callback page"]}>
```tsx {{ filename: 'app/sign-in/page.tsx' }}
```tsx {{ filename: 'app/sign-in/[[...sign-in]]/page.tsx' }}
'use client'

import * as React from 'react'
Expand Down