website: remove /early-access page#402
Conversation
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>
|
There was a problem hiding this comment.
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)
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>
There was a problem hiding this comment.
Your free trial has ended. If you'd like to continue receiving code reviews, you can add a payment method here.



Summary
website/early-access.md— the page still carried Round 1 / Round 2 / $30 pricing that no longer applies_layouts/default.html(shown under every Perspectives essay) to point at/paywith a flat $50 Pro pitch instead of the old waitlist lineTest plan
/early-accessno longer renders/pay$30and confirm no marketing copy still references it