react-icons icon indicating copy to clipboard operation
react-icons copied to clipboard

[Feature]: Redirect react-icons.github.io to react-icons.github.io/react-icons

Open mat-sz opened this issue 1 year ago • 1 comments

Describe

Sometimes, due to browser suggestions I end up browsing to https://react-icons.github.io/ which just displays a "not found" page.

Solution

  1. Create a react-icons.github.io repository in the @react-icons organization.
  2. Add an index.html file with the following contents:
<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="refresh" content="0; url=https://react-icons.github.io/react-icons" />
  </head>
  <body>
    Redirecting...
  </body>
</html>

Minimal sample repository URL

No response

Additional context

No response

mat-sz avatar Jun 28 '23 16:06 mat-sz