diff --git a/packages/frontend/src/components/LandingPage/constants.ts b/packages/frontend/src/components/LandingPage/constants.ts index c95f8a613..00b8896d9 100644 --- a/packages/frontend/src/components/LandingPage/constants.ts +++ b/packages/frontend/src/components/LandingPage/constants.ts @@ -13,7 +13,7 @@ export const navLinks = [ ] export const footerLinks = [ - { label: 'Developers', link: EXTERNAL_LINKS.DEVELOPERS, analyticsEvent: LANDING_EVENTS.NAV_DEVELOPERS }, + { label: 'Developers', link: EXTERNAL_LINKS.DEVELOPER_DOCS, analyticsEvent: LANDING_EVENTS.NAV_DEVELOPERS }, { label: 'Blog', link: EXTERNAL_LINKS.MEDIUM, analyticsEvent: LANDING_EVENTS.NAV_BLOG }, { label: 'Security', diff --git a/packages/frontend/src/components/SettingsMenu.tsx b/packages/frontend/src/components/SettingsMenu.tsx index 7832e8d8f..62e345883 100644 --- a/packages/frontend/src/components/SettingsMenu.tsx +++ b/packages/frontend/src/components/SettingsMenu.tsx @@ -60,7 +60,7 @@ const useStyles = makeStyles((theme) => ) const discordLink = EXTERNAL_LINKS.DISCORD -const docsLink = EXTERNAL_LINKS.DOCS_LINK +const docsLink = EXTERNAL_LINKS.DOCS_HUB const SettingMenu = () => { const classes = useStyles() diff --git a/packages/frontend/src/constants/routes.ts b/packages/frontend/src/constants/routes.ts index 1a1e0f9d2..9d5a1b57b 100644 --- a/packages/frontend/src/constants/routes.ts +++ b/packages/frontend/src/constants/routes.ts @@ -15,8 +15,8 @@ export const EXTERNAL_LINKS = { AUCTION: 'https://squeethportal.xyz/auction', FAQ: 'https://opyn.gitbook.io/opyn-strategies/strategies-faq/faq', SECURITY: 'https://opyn.gitbook.io/squeeth-faq/squeeth/security', - DEVELOPERS: 'https://opyn.gitbook.io/squeeth-1/', - DOCS_LINK: 'https://opyn.gitbook.io/opyn-hub/', + DOCS_HUB: 'https://opyn.gitbook.io/opyn-hub/', + DEVELOPER_DOCS: 'https://opyn.gitbook.io/squeeth-1/', MEDIUM: 'https://medium.com/opyn', TWITTER: 'https://twitter.com/opyn_', DISCORD: 'https://tiny.cc/opyndiscord',