Skip to content

Commit

Permalink
docs: change NextAuth.js to Auth.js
Browse files Browse the repository at this point in the history
  • Loading branch information
JamBalaya56562 committed Nov 1, 2024
1 parent 13fafe6 commit bfc6212
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1642,10 +1642,10 @@ Now that you've learned about authentication in Next.js, here are Next.js-compat
### Auth Libraries
- [Auth.js](https://authjs.dev/getting-started/installation?framework=next.js)
- [Auth0](https://auth0.com/docs/quickstart/webapp/nextjs/01-login)
- [Clerk](https://clerk.com/docs/quickstarts/nextjs)
- [Kinde](https://kinde.com/docs/developer-tools/nextjs-sdk)
- [NextAuth.js](https://authjs.dev/getting-started/installation?framework=next.js)
- [Ory](https://www.ory.sh/docs/getting-started/integrate-auth/nextjs)
- [Stack Auth](https://docs.stack-auth.com/getting-started/setup)
- [Supabase](https://supabase.com/docs/guides/getting-started/quickstarts/nextjs)
Expand Down
2 changes: 1 addition & 1 deletion docs/02-app/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ You can use [`redirect`](/docs/app/api-reference/functions/redirect) to redirect

Here are some common authentication solutions that support the App Router:

- [NextAuth.js](https://next-auth.js.org/configuration/nextjs#in-app-router)
- [Auth.js](https://authjs.dev/getting-started/installation?framework=Next.js)
- [Clerk](https://clerk.com/docs/quickstarts/nextjs)
- [Stack Auth](https://docs.stack-auth.com/getting-started/setup)
- [Auth0](https://github.com/auth0/nextjs-auth0#app-router)
Expand Down
2 changes: 1 addition & 1 deletion examples/auth/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Authentication

This is an example using NextAuth.js for authentication.
This is an example using [Auth.js](https://authjs.dev/) for authentication.

## Deploy your own

Expand Down
2 changes: 1 addition & 1 deletion examples/auth/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import "./globals.css";

export const metadata = {
title: "Next.js Authentication",
description: "Example using NextAuth.js",
description: "Example using Auth.js",
};

export default function RootLayout({
Expand Down

0 comments on commit bfc6212

Please sign in to comment.