diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-12-18 07:34:21 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-12-18 07:34:21 +0800 |
commit | 4cf3172c900f9b7ea7102ff2785932e8c9f473ca (patch) | |
tree | 5deac537115f43829ada94cd1b88c5e86310f84b /packages | |
parent | 8452c05952171943eae3145b82492dc018d31e1a (diff) | |
download | dexon-sol-tools-4cf3172c900f9b7ea7102ff2785932e8c9f473ca.tar dexon-sol-tools-4cf3172c900f9b7ea7102ff2785932e8c9f473ca.tar.gz dexon-sol-tools-4cf3172c900f9b7ea7102ff2785932e8c9f473ca.tar.bz2 dexon-sol-tools-4cf3172c900f9b7ea7102ff2785932e8c9f473ca.tar.lz dexon-sol-tools-4cf3172c900f9b7ea7102ff2785932e8c9f473ca.tar.xz dexon-sol-tools-4cf3172c900f9b7ea7102ff2785932e8c9f473ca.tar.zst dexon-sol-tools-4cf3172c900f9b7ea7102ff2785932e8c9f473ca.zip |
feat: final footer polish
Diffstat (limited to 'packages')
-rw-r--r-- | packages/website/ts/@next/components/footer.tsx | 4 | ||||
-rw-r--r-- | packages/website/ts/types.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/website/ts/@next/components/footer.tsx b/packages/website/ts/@next/components/footer.tsx index cd3fe8363..fedae5a1b 100644 --- a/packages/website/ts/@next/components/footer.tsx +++ b/packages/website/ts/@next/components/footer.tsx @@ -41,7 +41,7 @@ const linkRows: LinkRows[] = [ links: [ { url: WebsitePaths.Docs, text: 'Documentation' }, { url: constants.URL_GITHUB_ORG, text: 'GitHub', shouldOpenInNewTab: true }, - { url: WebsitePaths.Whitepaper, text: 'Whitepaper', shouldOpenInNewTab: true }, + { url: constants.URL_PROTOCOL_SPECIFICATION, text: 'Protocol Spec', shouldOpenInNewTab: true }, ], }, { @@ -51,7 +51,7 @@ const linkRows: LinkRows[] = [ { url: WebsitePaths.AboutMission, text: 'Mission' }, { url: WebsitePaths.AboutTeam, text: 'Team' }, { url: WebsitePaths.AboutJobs, text: 'Jobs' }, - { url: WebsitePaths.AboutPress, text: 'Press Kit' }, + { url: WebsitePaths.AboutPress, text: 'Press' }, { url: WebsitePaths.Ecosystem, text: 'Grant Program' }, ], }, diff --git a/packages/website/ts/types.ts b/packages/website/ts/types.ts index b54ec94b6..e4df19990 100644 --- a/packages/website/ts/types.ts +++ b/packages/website/ts/types.ts @@ -359,7 +359,7 @@ export enum WebsitePaths { LaunchKit = '/launch-kit', Instant = '/instant', Community = '/community', - Ecosystem = '/ecosystem', + Ecosystem = '/eap', MarketMaker = '/market-maker', Why = '/why', Whitepaper = '/pdfs/0x_white_paper.pdf', |