-
Notifications
You must be signed in to change notification settings - Fork 39
docs: Remove landing page from CLI documentation #1003
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
patrikbraborec
wants to merge
2
commits into
master
Choose a base branch
from
remove-landing-page
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
+18
−321
Conversation
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
Remove the landing page and redirect users directly to the documentation. Users will now go to /cli/docs instead of the landing page at /cli/. Changes: - Removed website/src/pages/index.js (landing page component) - Removed website/src/pages/index.module.css (associated styles) Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
- Create redirect page at /cli/ that redirects to /cli/docs - Override footer logo to point to /docs instead of / - Fixes broken links after landing page removal Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
patrikbraborec
added a commit
to apify/apify-client-js
that referenced
this pull request
Jan 23, 2026
## Summary Remove the landing page and redirect users directly to the documentation. Users will now go to `/api/client/js/docs` instead of the landing page at `/api/client/js/`. ## Changes - Replaced landing page with redirect to `/api/client/js/docs` - Removed `website/src/pages/index.module.css` (associated styles) - Updated footer logo href to point to `docs` ## Rationale The landing page duplicated information already available in the main documentation. By removing it and redirecting to `/api/client/js/docs`, we provide a more streamlined experience for users. ## Related This PR is coordinated with: - apify/apify-docs#2201 that updates the menu links - apify/apify-cli#1003 (similar change for CLI) Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
patrikbraborec
added a commit
to apify/apify-client-python
that referenced
this pull request
Jan 23, 2026
## Summary Remove the landing page and redirect users directly to the documentation. Users will now go to `/api/client/python/docs/introduction/overview` instead of the landing page at `/api/client/python/`. ## Changes - Replaced landing page with redirect to `/api/client/python/docs/introduction/overview` - Removed `website/src/pages/index.module.css` (associated styles) - Updated footer logo href to point to `docs/introduction/overview` ## Rationale The landing page duplicated information already available in the main documentation. By removing it and redirecting to `/api/client/python/docs/introduction/overview`, we provide a more streamlined experience for users. ## Related This PR is coordinated with: - apify/apify-docs#2201 that updates the menu links - apify/apify-cli#1003 (similar change for CLI) Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
patrikbraborec
added a commit
to apify/apify-client-js
that referenced
this pull request
Jan 23, 2026
## Summary Remove the landing page and redirect users directly to the documentation. Users will now go to `/api/client/js/docs` instead of the landing page at `/api/client/js/`. ## Changes - Replaced landing page with redirect to `/api/client/js/docs` - Removed `website/src/pages/index.module.css` (associated styles) - Updated footer logo href to point to `docs` ## Rationale The landing page duplicated information already available in the main documentation. By removing it and redirecting to `/api/client/js/docs`, we provide a more streamlined experience for users. ## Related This PR is coordinated with: - apify/apify-docs#2201 that updates the menu links - apify/apify-cli#1003 (similar change for CLI) Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
patrikbraborec
added a commit
to apify/apify-client-python
that referenced
this pull request
Jan 23, 2026
## Summary Remove the landing page and redirect users directly to the documentation. Users will now go to `/api/client/python/docs/introduction/overview` instead of the landing page at `/api/client/python/`. ## Changes - Replaced landing page with redirect to `/api/client/python/docs/introduction/overview` - Removed `website/src/pages/index.module.css` (associated styles) - Updated footer logo href to point to `docs/introduction/overview` ## Rationale The landing page duplicated information already available in the main documentation. By removing it and redirecting to `/api/client/python/docs/introduction/overview`, we provide a more streamlined experience for users. ## Related This PR is coordinated with: - apify/apify-docs#2201 that updates the menu links - apify/apify-cli#1003 (similar change for CLI) Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
B4nan
reviewed
Jan 27, 2026
Comment on lines
+7
to
+9
| useEffect(() => { | ||
| history.replace('/cli/docs'); | ||
| }, [history]); |
Member
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets add a server side redirect to https://github.com/apify/apify-docs/blob/master/nginx.conf
(this applies to all the PRs about the landing pages)
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
Remove the landing page and redirect users directly to the documentation. Users will now go to
/cli/docsinstead of the landing page at/cli/.Changes
website/src/pages/index.js(landing page component)website/src/pages/index.module.css(associated styles)Rationale
The landing page duplicated information already available in the main documentation. By removing it and redirecting to
/cli/docs, we provide a more streamlined experience for users.Related
This PR is related to apify/apify-docs PR that updates the menu links to point to
/cli/docs.🤖 Generated with Claude Code