-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some links and UI improvement (#848)
* Update indexer endpoint * Scale products on PC * Fix footer testnet and mainnet link * Remove home header logo transition * Close icon * Refactor helix not-found page * Refactor helix error page * Refactor app not-found page
- Loading branch information
1 parent
fede85f
commit 42a7108
Showing
10 changed files
with
29 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,5 @@ | ||
import { Link } from "react-router-dom"; | ||
import { Navigate } from "react-router-dom"; | ||
|
||
export default function NotFound() { | ||
return ( | ||
<> | ||
<main className="app-main flex items-center justify-center"> | ||
<div className="gap-medium flex w-fit flex-col items-start"> | ||
<h2 className="text-base font-medium text-white">Not Found !</h2> | ||
<p className="text-sm font-normal text-white">Could not find requested resource</p> | ||
<Link to="/" className="text-primary text-sm font-normal hover:underline"> | ||
Return Home | ||
</Link> | ||
</div> | ||
</main> | ||
</> | ||
); | ||
return <Navigate to="/" replace />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
VITE_GRAPHQL_ENDPOINT=https://apollo.helixbridge.app/graphql | ||
VITE_GRAPHQL_ENDPOINT=https://apollo.helix.box/graphql | ||
VITE_NETWORK_TYPE=mainnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
VITE_GRAPHQL_ENDPOINT=https://apollo-test.helixbridge.app/graphql | ||
VITE_GRAPHQL_ENDPOINT=https://apollo-test.helix.box/graphql | ||
VITE_NETWORK_TYPE=testnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,5 @@ | ||
import { Link } from "react-router-dom"; | ||
import { Navigate } from "react-router-dom"; | ||
|
||
export default function NotFound() { | ||
return ( | ||
<> | ||
<main className="app-main flex items-center justify-center"> | ||
<div className="gap-medium flex w-fit flex-col items-start"> | ||
<h2 className="text-base font-medium text-white">Not Found !</h2> | ||
<p className="text-sm font-normal text-white">Could not find requested resource</p> | ||
<Link to="/" className="text-primary text-sm font-normal hover:underline"> | ||
Return Home | ||
</Link> | ||
</div> | ||
</main> | ||
</> | ||
); | ||
return <Navigate to="/" replace />; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters