Skip to content

Commit

Permalink
Update styleguides (#1773)
Browse files Browse the repository at this point in the history
Co-authored-by: victoria <github@victoriahchang.com>
  • Loading branch information
alexisintech and victoriaxyz authored Jan 15, 2025
1 parent 3873630 commit 3faf9a3
Show file tree
Hide file tree
Showing 27 changed files with 229 additions and 469 deletions.
2 changes: 1 addition & 1 deletion docs/authentication/social-connections/linkedin.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: LinkedIn (Deprecated)
title: LinkedIn (deprecated)
description: Learn how to set up social connection with LinkedIn.
---

Expand Down
2 changes: 1 addition & 1 deletion docs/authentication/social-connections/twitter.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Twitter v1 (Deprecated)
title: Twitter v1 (deprecated)
description: Learn how to set up social connection with Twitter v1.
---

Expand Down
2 changes: 1 addition & 1 deletion docs/components/control/redirect-to-createorganization.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: '`<RedirectToCreateOrganization />` (Deprecated)'
title: '`<RedirectToCreateOrganization />` (deprecated)'
description: The <RedirectToCreateOrganization /> component will navigate to the user profile URL which has been configured in your application instance. The behavior will be just like a server-side (3xx) redirect, and will override the current location in the history stack.
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: '`<RedirectToOrganizationProfile />` (Deprecated)'
title: '`<RedirectToOrganizationProfile />` (deprecated)'
description: The <RedirectToOrganizationProfile /> component will navigate to the organization profile URL which has been configured in your application instance. The behavior will be just like a server-side (3xx) redirect, and will override the current location in the history stack.
---

Expand Down
2 changes: 1 addition & 1 deletion docs/components/control/redirect-to-userprofile.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: '`<RedirectToUserProfile />` (Deprecated)'
title: '`<RedirectToUserProfile />`' (deprecated)
description: The <RedirectToUserProfile /> component will navigate to the user profile URL which has been configured in your application instance. The behavior will be just like a server-side (3xx) redirect, and will override the current location in the history stack.
---

Expand Down
2 changes: 1 addition & 1 deletion docs/custom-flows/add-email.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The following example demonstrates how to build a custom user interface that all
1. Uses the `prepareVerification()` method on the newly created `EmailAddress` object to send a verification code to the user.
1. Uses the `attemptVerification()` method on the same `EmailAddress` object with the verification code provided by the user to verify the email address.

<Tabs items={["Next.js", "iOS (Beta)"]}>
<Tabs items={["Next.js", "iOS (beta)"]}>
<Tab>
```tsx {{ filename: 'app/account/add-email/page.tsx', collapsible: true }}
'use client'
Expand Down
2 changes: 1 addition & 1 deletion docs/custom-flows/add-phone.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The following example demonstrates how to build a custom user interface that all
1. Uses the `prepareVerification()` method on the newly created `PhoneNumber` object to send a verification code to the user.
1. Uses the `attemptVerification()` method on the same `PhoneNumber` object with the verification code provided by the user to verify the phone number.

<Tabs items={["Next.js", "iOS (Beta)"]}>
<Tabs items={["Next.js", "iOS (beta)"]}>
<Tab>
```tsx {{ filename: 'app/account/add-phone/page.tsx', collapsible: true }}
'use client'
Expand Down
2 changes: 1 addition & 1 deletion docs/custom-flows/email-password-mfa.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ This guide will walk you through how to build a custom email/password sign-in fl
> [!TIP]
> For this example to work, the user must have MFA enabled on their account. You need to add the ability for your users to manage their MFA settings. See the [manage SMS-based MFA](/docs/custom-flows/manage-sms-based-mfa) or the [manage TOTP-based MFA](/docs/custom-flows/manage-totp-based-mfa) guide, depending on your needs.
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (Beta)"]}>
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (beta)"]}>
<Tab>
```tsx {{ filename: 'app/sign-in/[[...sign-in]]/page.tsx', collapsible: true }}
'use client'
Expand Down
4 changes: 2 additions & 2 deletions docs/custom-flows/email-password.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This guide will walk you through how to build a custom email/password sign-up an
1. Collect the one-time code and attempt to complete the email address verification with it.
1. If the email address verification is successful, set the newly created session as the active session.

<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (Beta)"]}>
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (beta)"]}>
<Tab>
This example is written for Next.js App Router but it can be adapted for any React meta framework, such as Remix.

Expand Down Expand Up @@ -474,7 +474,7 @@ This guide will walk you through how to build a custom email/password sign-up an
1. Initiate the sign-in process by creating a `SignIn` using the email address and password provided.
1. If the attempt is successful, set the newly created session as the active session.

<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (Beta)"]}>
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (beta)"]}>
<Tab>
This example is written for Next.js App Router but it can be adapted for any React meta framework, such as Remix.

Expand Down
4 changes: 2 additions & 2 deletions docs/custom-flows/email-sms-otp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This guide will walk you through how to build a custom SMS OTP sign-up and sign-
1. Attempt to complete the verification with the code the user provides.
1. If the verification is successful, set the newly created session as the active session.

<Tabs items={["Next.js", "JavaScript", "iOS (Beta)"]}>
<Tabs items={["Next.js", "JavaScript", "iOS (beta)"]}>
<Tab>
This example is written for Next.js App Router but can be adapted to any React meta framework, such as Remix.

Expand Down Expand Up @@ -313,7 +313,7 @@ This guide will walk you through how to build a custom SMS OTP sign-up and sign-
1. Attempt verification with the code the user provides.
1. If the attempt is successful, set the newly created session as the active session.

<Tabs items={["Next.js","JavaScript", "iOS (Beta)"]}>
<Tabs items={["Next.js","JavaScript", "iOS (beta)"]}>
<Tab>
This example is written for Next.js App Router but can be adapted to any React meta framework, such as Remix.

Expand Down
2 changes: 1 addition & 1 deletion docs/custom-flows/forgot-password.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ For the sake of this guide, this example is written for Next.js App Router but i

{/* TODO: Add JavaScript example. */}

<CodeBlockTabs options={["Next.js", "iOS (Beta)"]}>
<CodeBlockTabs options={["Next.js", "iOS (beta)"]}>
```tsx {{ filename: 'app/forgot-password.tsx', collapsible: true }}
'use client'
import React, { useState } from 'react'
Expand Down
8 changes: 4 additions & 4 deletions docs/custom-flows/multi-session-applications.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To enable multi-session in your application, you need to configure it in the Cle

## Get the active session and user

<CodeBlockTabs options={["React", "JavaScript", "iOS (Beta)"]}>
<CodeBlockTabs options={["React", "JavaScript", "iOS (beta)"]}>
```jsx
import { useClerk } from '@clerk/clerk-react'

Expand All @@ -53,7 +53,7 @@ To enable multi-session in your application, you need to configure it in the Cle

## Switch between sessions

<CodeBlockTabs options={["React", "JavaScript", "iOS (Beta)"]}>
<CodeBlockTabs options={["React", "JavaScript", "iOS (beta)"]}>
```jsx
import { useClerk } from '@clerk/clerk-react'

Expand Down Expand Up @@ -97,7 +97,7 @@ For more information on how Clerk's sign-in flow works, see the [detailed sign-i

Use [`signOut()`](/docs/references/javascript/clerk/clerk#sign-out) to deactivate all sessions on the current client.

<CodeBlockTabs options={["React", "JavaScript", "iOS (Beta)"]}>
<CodeBlockTabs options={["React", "JavaScript", "iOS (beta)"]}>
```jsx
import { useClerk } from '@clerk/clerk-react'

Expand All @@ -122,7 +122,7 @@ Use [`signOut()`](/docs/references/javascript/clerk/clerk#sign-out) to deactivat

Use [`signOut()`](/docs/references/javascript/clerk/clerk#sign-out) to deactivate a specific session by passing the session ID.

<CodeBlockTabs options={["React", "JavaScript", "iOS (Beta)"]}>
<CodeBlockTabs options={["React", "JavaScript", "iOS (beta)"]}>
```jsx
import { useClerk } from '@clerk/clerk-react'

Expand Down
4 changes: 2 additions & 2 deletions docs/custom-flows/oauth-connections.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You must configure your application instance through the Clerk Dashboard for the

When using OAuth, the sign-up and sign-in flows are equivalent.

<Tabs items={["Next.js", "Expo", "iOS (Beta)"]}>
<Tabs items={["Next.js", "Expo", "iOS (beta)"]}>
<Tab>
A successful OAuth flow consists of the following steps:

Expand Down Expand Up @@ -167,7 +167,7 @@ It is common for users who are authenticating with OAuth to use a sign-in button

The following example demonstrates how to handle these cases in your sign-in flow. To apply the same logic to the sign-up flow, simply replace `signIn.authenticateWithRedirect()` with `signUp.authenticateWithRedirect()` in your code.

<Tabs items={["Next.js", "iOS (Beta)"]}>
<Tabs items={["Next.js", "iOS (beta)"]}>
<Tab>
```tsx {{ filename: 'app/sign-in/page.tsx', collapsible: true }}
'use client'
Expand Down
2 changes: 1 addition & 1 deletion docs/custom-flows/sign-out.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The `signOut()` function signs a user out of all sessions in a [multi-session ap
> [!NOTE]
> The sign-out flow deactivates only the current session. Other valid sessions associated with the same user (e.g., if the user is signed in on another device) will remain active.
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (Beta)"]}>
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (beta)"]}>
<Tab>
The [`useClerk()`](/docs/references/react/use-clerk) hook is used to access the `signOut()` function, which is called when the user clicks the sign-out button.

Expand Down
2 changes: 1 addition & 1 deletion docs/customization/elements/overview.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Clerk Elements (Beta)
title: Clerk Elements (beta)
description: Learn how to use Clerk Elements to build custom UIs on top of the Clerk APIs without having to manage the underlying logic.
---

Expand Down
4 changes: 2 additions & 2 deletions docs/deployments/deploy-chrome-extension.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For Clerk production instances, there must be a domain associated with the insta
</SignedIn>

<SignedOut>
1. At the top in the Clerk Dashboard, in the instance selection dropdown, ensure that your production instance is selected.
1. At the top of the Clerk Dashboard, in the instance selection dropdown, ensure that your production instance is selected.
1. In the navigation sidebar, select [**API keys**](https://dashboard.clerk.com/last-active?path=api-keys).
1. In the **Quick Copy** section, select **Chrome Extension** and copy your Clerk Publishable and Frontend API keys.
1. Paste your keys into your `.env.production` file.
Expand Down Expand Up @@ -64,7 +64,7 @@ The following example shows how to configure `host_permissions` for production:
</SignedIn>

<SignedOut>
1. At the top in the Clerk Dashboard, in the instance selection dropdown, ensure that your production instance is selected.
1. At the top of the Clerk Dashboard, in the instance selection dropdown, ensure that your production instance is selected.
1. In the navigation sidebar, select [**API keys**](https://dashboard.clerk.com/last-active?path=api-keys).
1. Copy your Secret Key. It should begin with `sk_live_`.
1. In your terminal, paste the following command. Replace `YOUR_SECRET_KEY` with your Clerk Secret Key and the `<CHROME_EXTENSION_KEY>` with your extension's ID.
Expand Down
6 changes: 3 additions & 3 deletions docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,19 @@ Find all the guides and resources you need to develop with Clerk.

---

- [iOS (Beta)](/docs/quickstarts/ios)
- [iOS (beta)](/docs/quickstarts/ios)
- Use the Clerk iOS SDK to authenticate users in your native Apple applications.
- {<svg viewBox="-73 0 960 1000"><path d="M788.1 340.9c-5.8 4.5-108.2 62.2-108.2 190.5 0 148.4 130.3 200.9 134.2 202.2-.6 3.2-20.7 71.9-68.7 141.9-42.8 61.6-87.5 123.1-155.5 123.1s-85.5-39.5-164-39.5c-76.5 0-103.7 40.8-165.9 40.8s-105.6-57-155.5-127C46.7 790.7 0 663 0 541.8c0-194.4 126.4-297.5 250.8-297.5 66.1 0 121.2 43.4 162.7 43.4 39.5 0 101.1-46 176.3-46 28.5 0 130.9 2.6 198.3 99.2zm-234-181.5c31.1-36.9 53.1-88.1 53.1-139.3 0-7.1-.6-14.3-1.9-20.1-50.6 1.9-110.8 33.7-147.1 75.8-28.5 32.4-55.1 83.6-55.1 135.5 0 7.8 1.3 15.6 1.9 18.1 3.2.6 8.4 1.3 13.6 1.3 45.4 0 102.5-30.4 135.5-71.3z" style={{ fill: 'var(--light, black) var(--dark, white)' }} /></svg>}

---

- [TanStack Start (Beta)](/docs/quickstarts/tanstack-start)
- [TanStack Start (beta)](/docs/quickstarts/tanstack-start)
- Easily add secure and SSR-friendly authentication to your TanStack Start application with Clerk.
- ![](data:image/webp;base64,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)

---

- [React Router (Beta)](/docs/quickstarts/react-router)
- [React Router (beta)](/docs/quickstarts/react-router)
- Easily add secure, edge- and SSR-friendly authentication to React Router with Clerk.
- {<svg viewBox="0 0 32 32"><path fill="#F44250" d="M25.6 15.568a3.196 3.196 0 0 1-3.2 3.19 3.193 3.193 0 0 0-3.2 3.189 3.196 3.196 0 0 1-3.2 3.19 3.193 3.193 0 0 1-2.263-.935 3.172 3.172 0 0 1-.937-2.255 3.193 3.193 0 0 1 3.2-3.19 3.196 3.196 0 0 0 3.2-3.189 3.194 3.194 0 0 0-3.2-3.19 3.193 3.193 0 0 1-3.2-3.189A3.193 3.193 0 0 1 16 6c1.767.001 3.2 1.429 3.2 3.19a3.193 3.193 0 0 0 3.2 3.19c1.768 0 3.2 1.427 3.2 3.19Z"/><path style={{ fill: 'var(--light, #121212) var(--dark, #fff)' }} d="M12.8 15.568a3.195 3.195 0 0 0-3.2-3.19 3.195 3.195 0 0 0-3.2 3.19 3.195 3.195 0 0 0 3.2 3.19c1.767 0 3.2-1.428 3.2-3.19ZM6.4 21.947a3.195 3.195 0 0 0-3.2-3.19 3.195 3.195 0 0 0-3.2 3.19 3.195 3.195 0 0 0 3.2 3.19c1.767 0 3.2-1.429 3.2-3.19ZM32 21.947a3.195 3.195 0 0 0-3.2-3.19 3.195 3.195 0 0 0-3.2 3.19 3.195 3.195 0 0 0 3.2 3.19c1.767 0 3.2-1.429 3.2-3.19Z"/></svg>}

Expand Down
6 changes: 3 additions & 3 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@
"href": "/docs/authentication/social-connections/linkedin-oidc"
},
{
"title": "LinkedIn (Deprecated)",
"title": "LinkedIn (deprecated)",
"href": "/docs/authentication/social-connections/linkedin"
},
{
Expand Down Expand Up @@ -458,7 +458,7 @@
"href": "/docs/authentication/social-connections/twitch"
},
{
"title": "Twitter v1 (Deprecated)",
"title": "Twitter v1 (deprecated)",
"href": "/docs/authentication/social-connections/twitter"
},
{
Expand Down Expand Up @@ -766,7 +766,7 @@
"href": "/docs/backend-requests/handling/manual-jwt"
},
{
"title": "Node.js (Deprecated)",
"title": "Node.js (deprecated)",
"href": "/docs/backend-requests/handling/nodejs"
}
]
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstarts/ios.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: iOS Quickstart (Beta)
title: iOS Quickstart (beta)
description: Add authentication and user management to your iOS app with Clerk.
---

Expand Down
Loading

0 comments on commit 3faf9a3

Please sign in to comment.