feat: redirect to quip - #11
Conversation
🤖 Augment PR SummarySummary: This PR replaces the existing marketing/landing page with a lightweight “site moved” page that redirects visitors to the GitHub Pages destination. Changes:
Technical Notes: The redirect uses 🤖 Was this summary useful? React with 👍 or 👎 |
| /> | ||
| <meta | ||
| http-equiv="refresh" | ||
| content="0; url=https://quipnetwork.github.io/qubitrefill/" |
There was a problem hiding this comment.
site/index.html:18 http-equiv="refresh" will drop the current search/hash when JS is disabled or blocked, while the script preserves them; this can create inconsistent deep-link behavior between JS and no-JS clients. Other locations where this applies: site/index.html:33.
Severity: medium
Other Locations
site/index.html:33
🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.
|
|
||
| destination.search = window.location.search; | ||
| destination.hash = window.location.hash; | ||
| window.location.replace(destination); |
There was a problem hiding this comment.
site/index.html:27 If this page is ever served from (or already at) https://quipnetwork.github.io/qubitrefill/, the location.replace + meta refresh target is effectively “self” and can result in a redirect/reload loop. Consider ensuring the redirect only occurs when the current URL differs from the destination.
Severity: medium
🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.
No description provided.