Add a "Protect your pages" step (server-side auth read)#12
Open
manovotny wants to merge 2 commits into
Open
Conversation
Add a /protected route that reads the signed-in user on the server and redirects signed-out visitors, plus a "Protected" nav link shown only when signed in: client components control visibility, the server controls access. Part of DOCS-11853. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This was referenced Jun 16, 2026
…protect-your-pages # Conflicts: # app/root.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a
/protectedroute to the quickstart that reads the signed-in user on the server and redirects signed-out visitors to/, plus a "Protected" nav link shown only when signed in.Why
The quickstart currently ends at client-side UI (
<SignInButton>,<UserButton>,<SignedIn>). This adds the missing half — reading the authenticated user in your own server code — and makes the model explicit:It mirrors the pattern already shipped in the TanStack React Start quickstart.
What's here
/protectedroute using this SDK's server-side auth helper, redirecting signed-out users to/and rendering the user's ID when signed in.<SignedIn>.Verification
Booted with real Clerk keys: signed-out
/protectedredirects to/; signed-in renders the user's ID. Type-checks clean.Part of DOCS-11853.
🤖 Generated with Claude Code
Companion PRs