Skip to content

feat: redirect to quip - #11

Closed
ruseinov wants to merge 1 commit into
QuipNetwork:mainfrom
ruseinov:feature/redirect
Closed

feat: redirect to quip#11
ruseinov wants to merge 1 commit into
QuipNetwork:mainfrom
ruseinov:feature/redirect

Conversation

@ruseinov

Copy link
Copy Markdown
Collaborator

No description provided.

@ruseinov ruseinov closed this Jul 24, 2026
@augmentcode

augmentcode Bot commented Jul 24, 2026

Copy link
Copy Markdown
🤖 Augment PR Summary

Summary: This PR replaces the existing marketing/landing page with a lightweight “site moved” page that redirects visitors to the GitHub Pages destination.

Changes:

  • Deletes the previous long-form HTML/CSS content from site/index.html and replaces it with a minimal redirect stub
  • Updates the document title/description to indicate the site has moved
  • Adds robots noindex and a rel="canonical" pointing at https://quipnetwork.github.io/qubitrefill/
  • Implements an immediate meta refresh redirect to the new URL
  • Adds a JavaScript redirect that preserves the incoming query string and hash fragment
  • Provides a simple in-body link as a fallback for users who briefly see the page

Technical Notes: The redirect uses location.replace (no back-button entry) and attempts to preserve deep-link parameters via JS.

🤖 Was this summary useful? React with 👍 or 👎

@augmentcode augmentcode 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.

Review completed. 2 suggestions posted.

Fix All in Augment

Comment augment review to trigger a new review at any time.

Comment thread site/index.html
/>
<meta
http-equiv="refresh"
content="0; url=https://quipnetwork.github.io/qubitrefill/"

@augmentcode augmentcode Bot Jul 24, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

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

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

Comment thread site/index.html

destination.search = window.location.search;
destination.hash = window.location.hash;
window.location.replace(destination);

@augmentcode augmentcode Bot Jul 24, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

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

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

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