diff --git a/www/docs/contributors.md b/www/docs/contributors.md index 6ff49112cd..fdf232ce28 100644 --- a/www/docs/contributors.md +++ b/www/docs/contributors.md @@ -20,7 +20,7 @@ _Special thanks to Lori Karikari for creating most of the providers, to Nico Dom NextAuth.js as it exists today has been possible thanks to the work of many individual contributors. -Thank you to the [dozens of individual contributors](https://github.com/iaincollins/next-auth/graphs/contributors) who have help shaped NextAuth.js. +Thank you to the [dozens of individual contributors](https://github.com/nextauthjs/next-auth/graphs/contributors) who have help shaped NextAuth.js. ## History diff --git a/www/docs/getting-started/example.md b/www/docs/getting-started/example.md index 56daa5ba6c..4a2e7ec85d 100644 --- a/www/docs/getting-started/example.md +++ b/www/docs/getting-started/example.md @@ -8,7 +8,7 @@ title: Example Code The example code below describes to add authentication to a Next.js app. :::tip -The easiest way to get started is to clone the [example app](https://github.com/iaincollins/next-auth-example) and follow the instructions in README.md. You can try out a live demo at [next-auth-example.now.sh](https://next-auth-example.now.sh) +The easiest way to get started is to clone the [example app](https://github.com/nextauthjs/next-auth-example) and follow the instructions in README.md. You can try out a live demo at [next-auth-example.now.sh](https://next-auth-example.now.sh) ::: ### Add API route diff --git a/www/docs/tutorials/securing-pages-and-api-routes.md b/www/docs/tutorials/securing-pages-and-api-routes.md index fb4a27019a..c568e885be 100644 --- a/www/docs/tutorials/securing-pages-and-api-routes.md +++ b/www/docs/tutorials/securing-pages-and-api-routes.md @@ -5,7 +5,7 @@ title: Securing pages and API routes You can easily protect client and server side rendered pages and API routes with NextAuth.js. -_You can find working examples of the approaches shown below in the [example project](https://github.com/iaincollins/next-auth-example/)._ +_You can find working examples of the approaches shown below in the [example project](https://github.com/nextauthjs/next-auth-example/)._ :::tip The methods `getSession()` and `getToken()` both return an `object` if a session is valid and `null` if a session is invalid or has expired. diff --git a/www/docs/tutorials/typeorm-custom-models.md b/www/docs/tutorials/typeorm-custom-models.md index 1fc9f1e218..836f96bd37 100644 --- a/www/docs/tutorials/typeorm-custom-models.md +++ b/www/docs/tutorials/typeorm-custom-models.md @@ -48,7 +48,7 @@ export default { ``` :::note -[View source for built-in TypeORM models and schemas](https://github.com/iaincollins/next-auth/tree/main/src/adapters/typeorm/models) +[View source for built-in TypeORM models and schemas](https://github.com/nextauthjs/next-auth/tree/main/src/adapters/typeorm/models) ::: ## Using custom models