Added Privacy Policy Page

This commit is contained in:
Chris Kalani
2019-08-09 16:17:10 -07:00
parent 250c46d6a4
commit d179d6a1a2
5 changed files with 254 additions and 0 deletions

View File

@@ -32,6 +32,8 @@ import { NextLanding } from 'ts/pages/landing';
import { NextLaunchKit } from 'ts/pages/launch_kit';
import { NextMarketMaker } from 'ts/pages/market_maker';
import { NextWhy } from 'ts/pages/why';
import { PrivacyPolicy } from 'ts/pages/privacy';
import { TermsOfService } from 'ts/pages/terms';
// Check if we've introduced an update that requires us to clear the tradeHistory local storage entries
tradeHistoryStorage.clearIfRequired();
@@ -128,6 +130,16 @@ render(
<Route exact={true} path={`${WebsitePaths.Vote}/:zeip`} component={Governance as any} />
<Route exact={true} path={WebsitePaths.Vote} component={VoteIndex as any} />
<Route exact={true} path={WebsitePaths.Extensions} component={Extensions as any} />
<Route
exact={true}
path={WebsitePaths.PrivacyPolicy}
component={PrivacyPolicy as any}
/>
<Route
exact={true}
path={WebsitePaths.TermsOfService}
component={TermsOfService as any}
/>
<Route
exact={true}
path={WebsitePaths.AboutMission}