This repository was archived by the owner on Aug 9, 2021. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ import {
2222 Spaces ,
2323 EditProfile ,
2424 PubProfile ,
25- Careers ,
2625 Terms ,
2726 Privacy ,
2827 Settings ,
@@ -78,19 +77,24 @@ const AppRoutes = (props) => {
7877
7978 < Route
8079 exact
81- path = { routes . CAREERS }
82- render = { ( ) => < Careers /> }
80+ path = { routes . TEAM }
81+ render = { ( ) => < Team /> }
8382 />
8483 < Route
8584 exact
86- path = { routes . TEAM }
87- render = { ( ) => < Team /> }
85+ path = { routes . CAREERS }
86+ render = { ( ) => {
87+ window . location = 'https://jobs.lever.co/3box' ;
88+ return null ;
89+ } }
8890 />
89-
9091 < Route
9192 exact
9293 path = { routes . JOBS }
93- render = { ( ) => < Redirect to = { routes . CAREERS } /> }
94+ render = { ( ) => {
95+ window . location = 'https://jobs.lever.co/3box' ;
96+ return null ;
97+ } }
9498 />
9599
96100 < Route
Original file line number Diff line number Diff line change @@ -73,13 +73,6 @@ export const NavLanding = (props) => (
7373 </ DynamicImports >
7474) ;
7575
76- export const Careers = ( props ) => (
77- < DynamicImports load = { ( ) => import ( './views/Landing/Careers' ) } >
78- { Component => Component !== null
79- && < Component { ...props } /> }
80- </ DynamicImports >
81- ) ;
82-
8376export const Terms = ( props ) => (
8477 < DynamicImports load = { ( ) => import ( './views/Landing/Terms' ) } >
8578 { Component => Component !== null
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ const Footer = () => (
6464 < h5 >
6565 MORE
6666 </ h5 >
67- < Link to = { routes . CAREERS } >
67+ < a href = "https://jobs.lever.co/3box" target = "_blank" rel = "noopener noreferrer" >
6868 Careers
69- </ Link >
69+ </ a >
7070 < Link to = { routes . TEAM } >
7171 Team
7272 </ Link >
You can’t perform that action at this time.
0 commit comments