Build a custom sign-out flow
Clerk's <UserButton />
and <SignOutButton />
components provide an out-of-the-box solution for signing out users. However, if you're building a custom solution, you can use the signOut()
function to handle the sign-out process.
The signOut()
function signs a user out of all sessions in a multi-session application, or only the current session in a single-session context. You can also specify a specific session to sign out by passing the sessionId
parameter.
The useClerk()
hook is used to access the signOut()
function, which is called when the user clicks the sign-out button.
The Next.js useRouter()
hook is used to redirect the user to the home page after they sign out.
This example is written for Next.js App Router but can be adapted for any React meta framework, such as Remix.
Feedback
Last updated on