Skip to content

website: remove /early-access page#402

Merged
alichherawalla merged 1 commit into
mainfrom
docs/website-remove-early-access
Jun 16, 2026
Merged

website: remove /early-access page#402
alichherawalla merged 1 commit into
mainfrom
docs/website-remove-early-access

Conversation

@alichherawalla

Copy link
Copy Markdown
Collaborator

Summary

  • Delete website/early-access.md — the page still carried Round 1 / Round 2 / $30 pricing that no longer applies
  • Update the essay-end CTA in _layouts/default.html (shown under every Perspectives essay) to point at /pay with a flat $50 Pro pitch instead of the old waitlist line

Test plan

  • Build the site and confirm /early-access no longer renders
  • Open any essay under Perspectives and confirm the end-of-content CTA shows the new Pro copy and links to /pay
  • grep the repo for $30 and confirm no marketing copy still references it

Delete the early-access page (it still mentioned Round 1 / Round 2 / $30 pricing that no longer applies) and repoint the essay-end CTA in default.html at /pay with a flat $50 Pro pitch instead of the waitlist line.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@alichherawalla alichherawalla merged commit bb2d15e into main Jun 16, 2026
@alichherawalla alichherawalla deleted the docs/website-remove-early-access branch June 16, 2026 17:45
@sonarqubecloud

Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request transitions the site from an early access waitlist model to a direct purchase model for Off Grid Pro. It updates the call-to-action in the default layout to link to /pay instead of /early-access and deletes the early access page. The reviewer points out that completely deleting the /early-access page will cause 404 errors for existing links and recommends replacing it with a client-side redirect to /pay to preserve SEO and user experience.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

I am having trouble creating individual review comments. Click here to see my feedback.

website/early-access.md (1-176)

medium

Deleting the /early-access page entirely will result in 404 Not Found errors for search engines, bookmarks, or external links (e.g., from previous marketing campaigns or social media posts) that point to this URL.

Instead of deleting the file, it is highly recommended to keep it and configure a client-side redirect to the new /pay page. This preserves SEO link equity and ensures a seamless user experience.

---
layout: null
permalink: /early-access
---
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Redirecting...</title>
  <link rel="canonical" href="{{ '/pay' | relative_url }}">
  <script>window.location.replace("{{ '/pay' | relative_url }}");</script>
  <meta http-equiv="refresh" content="0; url={{ '/pay' | relative_url }}">
  <meta name="robots" content="noindex">
</head>
<body>
  <h1>Redirecting...</h1>
  <p><a href="{{ '/pay' | relative_url }}">Click here if you are not redirected.</a></p>
</body>
</html>

@greptile-apps greptile-apps Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your free trial has ended. If you'd like to continue receiving code reviews, you can add a payment method here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant