From d0b33429d39e1ba87989ccc16ecae8674b4dbd7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=9E=E3=83=AB=E3=82=B3=E3=83=A1?= Date: Wed, 30 Oct 2024 03:58:25 +0900 Subject: [PATCH] docs: change pages to app router links (#71782) ## Description Some links navigate pages docs. Then update app router ones. ### Improving Documentation - [x] Run `pnpm prettier-fix` to fix formatting issues before opening the PR. - [x] Read the Docs Contribution Guide to ensure your contribution follows the docs guidelines: https://nextjs.org/docs/community/contribution-guide Co-authored-by: JJ Kasper --- contributing/examples/adding-examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contributing/examples/adding-examples.md b/contributing/examples/adding-examples.md index 696d49e53eee8..b401cea67a6f1 100644 --- a/contributing/examples/adding-examples.md +++ b/contributing/examples/adding-examples.md @@ -21,7 +21,7 @@ Also, don’t forget to add a `README.md` file with the following format: - Examples should be TypeScript first, if possible. - Omit the `name` and `version` fields from your `package.json`. - Ensure all your dependencies are up to date. -- Ensure you’re using [`next/image`](https://nextjs.org/docs/api-reference/next/image). +- Ensure you’re using [`next/image`](https://nextjs.org/docs/app/api-reference/components/image). - To add additional installation instructions, please add them where appropriate. - To add additional notes, add `## Notes` section at the end. - Remove the `Deploy your own` section if your example can’t be immediately deployed to Vercel. @@ -57,5 +57,5 @@ pnpm create next-app --example DIRECTORY_NAME DIRECTORY_NAME-app bunx create-next-app --example DIRECTORY_NAME DIRECTORY_NAME-app ``` -Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). +Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/app/building-your-application/deploying)). ````