Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Commit 11e09f8

Browse files
author
Jade Tran
authored
Merge pull request #417 from 0xProject/jadet/remove-team-page
Remove team page
2 parents 608a77e + aab969b commit 11e09f8

File tree

7 files changed

+0
-356
lines changed

7 files changed

+0
-356
lines changed

public/sitemap.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ https://0x.org/docs/guides/rfqt-in-the-0x-api
1818
https://0x.org/docs
1919
https://0x.org/about
2020
https://0x.org/about/mission
21-
https://0x.org/about/team
2221
https://0x.org/about/press
2322
https://0x.org/about/jobs
2423
https://0x.org/community

ts/components/aboutPageLayout.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export const AboutPageLayout = (props: Props) => (
2525
<Section isFlex={true} maxWidth="1170px" wrapWidth="100%">
2626
<Column>
2727
<ChapterLink to={WebsitePaths.AboutMission}>Mission</ChapterLink>
28-
<ChapterLink to={WebsitePaths.AboutTeam}>Team</ChapterLink>
2928
<ChapterLink to={WebsitePaths.AboutPress}>Press</ChapterLink>
3029
<ChapterLink to={WebsitePaths.AboutJobs}>Jobs</ChapterLink>
3130
</Column>

ts/components/footer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ const linkRows: LinkRows[] = [
5151
isOnMobile: true,
5252
links: [
5353
{ url: WebsitePaths.AboutMission, text: 'Mission' },
54-
{ url: WebsitePaths.AboutTeam, text: 'Team' },
5554
{ url: WebsitePaths.AboutJobs, text: 'Jobs' },
5655
{ url: WebsitePaths.PrivacyPolicy, text: 'Privacy Policy' },
5756
{ url: WebsitePaths.TermsOfService, text: 'Terms of Service' },

ts/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import { muiTheme } from 'ts/utils/mui_theme';
2626
import { NextAboutJobs } from 'ts/pages/about/jobs';
2727
import { NextAboutMission } from 'ts/pages/about/mission';
2828
import { NextAboutPress } from 'ts/pages/about/press';
29-
import { NextAboutTeam } from 'ts/pages/about/team';
3029
// import { Credits } from 'ts/pages/credits';
3130
// import { Explore } from 'ts/pages/explore';
3231

@@ -131,7 +130,6 @@ render(
131130
<Route exact={true} path={WebsitePaths.PrivacyPolicy} component={PrivacyPolicy} />
132131
<Route exact={true} path={WebsitePaths.TermsOfService} component={TermsOfService} />
133132
<Route exact={true} path={WebsitePaths.AboutMission} component={NextAboutMission} />
134-
<Route exact={true} path={WebsitePaths.AboutTeam} component={NextAboutTeam} />
135133
<Route exact={true} path={WebsitePaths.AboutPress} component={NextAboutPress} />
136134
<Route exact={true} path={WebsitePaths.AboutJobs} component={NextAboutJobs} />
137135
{/* <Route exact={true} path={WebsitePaths.Mesh} component={Mesh} /> */}

ts/pages/about/team.tsx

Lines changed: 0 additions & 344 deletions
This file was deleted.

ts/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,6 @@ export enum WebsitePaths {
557557
Home = '/',
558558
About = '/about',
559559
AboutMission = '/about/mission',
560-
AboutTeam = '/about/team',
561560
AboutPress = '/about/press',
562561
AboutJobs = '/about/jobs',
563562
Community = '/community',

0 commit comments

Comments
 (0)