docs: fix broken examples link
What?
Fix broken link in the documentation pointing to the examples folder.
Why?
The previous link to the examples folder in docs/04-community/index.mdx was incorrect:
https://github.com/vercel/next.js/tree/canary/contributing/examples
This caused confusion and 404 errors for contributors trying to access the correct examples.
(the url page is in here https://nextjs.org/docs/community/contribution-guide)
How?
Updated the link in docs/04-community/index.mdx to point to the correct folder:
from
https://github.com/vercel/next.js/tree/canary/contributing/examples
to
https://github.com/vercel/next.js/tree/canary/examples
Allow CI Workflow Run
- [ ] approve CI run for commit: 3c20c43ca7046ff62a3ea71e82b2669fccd4d70b
Note: this should only be enabled once the PR is ready to go and can only be enabled by a maintainer
Allow CI Workflow Run
- [ ] approve CI run for commit: 3c20c43ca7046ff62a3ea71e82b2669fccd4d70b
Note: this should only be enabled once the PR is ready to go and can only be enabled by a maintainer
Good catch! The broken link to the examples folder definitely causes confusion. The fix looks correct - pointing to /examples instead of /contributing/examples.
Simple but helpful documentation fix.