chore: update constants

This commit is contained in:
Nicolás Quiroz 2022-09-30 10:27:30 -03:00
parent 78ef312f38
commit 45f82e2793
1 changed files with 11 additions and 0 deletions

11
src/constants.ts Normal file
View File

@ -0,0 +1,11 @@
// internal pages
export const DOWNLOADS_PAGE = '/downloads';
export const DOCS_PAGE = '/docs';
export const FAQ_PAGE = '/docs/faq';
export const CONTRIBUTING_PAGE = `${DOCS_PAGE}/developers/contributing`;
// external links
export const ETHEREUM_ORG_URL = 'https://ethereum.org';
export const ETHEREUM_ORG_RUN_A_NODE_URL = 'https://ethereum.org/en/run-a-node/';
export const ETHEREUM_FOUNDATION_URL = 'https://ethereum.foundation';
export const GETH_REPO_URL = 'https://github.com/ethereum/go-ethereum';