diff options
author | Fred Carlsen <fred@sjelfull.no> | 2018-12-15 06:03:45 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-15 06:03:45 +0800 |
commit | b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6 (patch) | |
tree | fd31ed0b062a50dc4fc775b99b344e283dcd9f86 /packages/website/ts/@next/pages | |
parent | 8570616d9765584e91c2fcfced398a6289536464 (diff) | |
download | dexon-0x-contracts-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar dexon-0x-contracts-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar.gz dexon-0x-contracts-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar.bz2 dexon-0x-contracts-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar.lz dexon-0x-contracts-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar.xz dexon-0x-contracts-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.tar.zst dexon-0x-contracts-b9fa158092c0179d41f5cf7b4f62eec95dd7f4f6.zip |
Update links and routes
Diffstat (limited to 'packages/website/ts/@next/pages')
-rw-r--r-- | packages/website/ts/@next/pages/about/team.tsx | 3 | ||||
-rw-r--r-- | packages/website/ts/@next/pages/launch_kit.tsx | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/packages/website/ts/@next/pages/about/team.tsx b/packages/website/ts/@next/pages/about/team.tsx index 14af70783..bf8d02095 100644 --- a/packages/website/ts/@next/pages/about/team.tsx +++ b/packages/website/ts/@next/pages/about/team.tsx @@ -7,6 +7,7 @@ import { colors } from 'ts/style/colors'; import { AboutPageLayout } from 'ts/@next/components/aboutPageLayout'; import { Column, Section } from 'ts/@next/components/newLayout'; import { Heading, Paragraph } from 'ts/@next/components/text'; +import { WebsitePaths } from 'ts/types'; interface TeamMember { name: string; @@ -180,7 +181,7 @@ export const NextAboutTeam = () => ( title="We are a global, growing team" description="We are a distributed team with backgrounds in engineering, academic research, business, and design. The 0x Core Team is passionate about accelerating the adoption decentralized technology and believe in its potential to be an equalizing force in the world. Join us and do the most impactful work of your life." linkLabel="Join the team" - linkUrl="/next/about/jobs" + linkUrl={WebsitePaths.AboutJobs} > <Section maxWidth="1170px" diff --git a/packages/website/ts/@next/pages/launch_kit.tsx b/packages/website/ts/@next/pages/launch_kit.tsx index 43b538df4..30fedba1b 100644 --- a/packages/website/ts/@next/pages/launch_kit.tsx +++ b/packages/website/ts/@next/pages/launch_kit.tsx @@ -12,6 +12,8 @@ import { SiteWrap } from 'ts/@next/components/siteWrap'; import {Section} from 'ts/@next/components/newLayout'; import { ModalContact } from '../components/modals/modal_contact'; +import { WebsitePaths } from 'ts/types'; + const offersData = [ { icon: 'supportForAllEthereumStandards', @@ -120,7 +122,7 @@ const HeroActions = () => ( Get Started </Button> - <Button to="/next/why" isTransparent={true} isInline={true}> + <Button to={WebsitePaths.Why} isTransparent={true} isInline={true}> Learn More </Button> </> |