aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-07-27 17:59:35 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-07-30 15:48:39 +0800
commit5283dcce2ea5878ac45b9b297c0882f926feb344 (patch)
tree719cfb9417d2508822d346c288ef69567d6178f1 /packages/website/ts/pages
parent48e538f5c7dc208775ec71635e4d4866b5907228 (diff)
downloaddexon-sol-tools-5283dcce2ea5878ac45b9b297c0882f926feb344.tar
dexon-sol-tools-5283dcce2ea5878ac45b9b297c0882f926feb344.tar.gz
dexon-sol-tools-5283dcce2ea5878ac45b9b297c0882f926feb344.tar.bz2
dexon-sol-tools-5283dcce2ea5878ac45b9b297c0882f926feb344.tar.lz
dexon-sol-tools-5283dcce2ea5878ac45b9b297c0882f926feb344.tar.xz
dexon-sol-tools-5283dcce2ea5878ac45b9b297c0882f926feb344.tar.zst
dexon-sol-tools-5283dcce2ea5878ac45b9b297c0882f926feb344.zip
Create MetaTags component
Diffstat (limited to 'packages/website/ts/pages')
-rw-r--r--packages/website/ts/pages/jobs/jobs.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/website/ts/pages/jobs/jobs.tsx b/packages/website/ts/pages/jobs/jobs.tsx
index 5c45d79fa..b1a9874d2 100644
--- a/packages/website/ts/pages/jobs/jobs.tsx
+++ b/packages/website/ts/pages/jobs/jobs.tsx
@@ -4,6 +4,7 @@ import * as React from 'react';
import * as DocumentTitle from 'react-document-title';
import { Footer } from 'ts/components/footer';
+import { MetaTags } from 'ts/components/meta_tags';
import { TopBar } from 'ts/components/top_bar/top_bar';
import { Benefits } from 'ts/pages/jobs/benefits';
import { Join0x } from 'ts/pages/jobs/join_0x';
@@ -16,6 +17,8 @@ import { utils } from 'ts/utils/utils';
const OPEN_POSITIONS_HASH = 'positions';
const THROTTLE_TIMEOUT = 100;
+const DOCUMENT_TITLE = 'Careers at 0x';
+const DOCUMENT_DESCRIPTION = 'Join 0x in creating a tokenized world where all value can flow freely';
export interface JobsProps {
location: Location;
@@ -40,7 +43,8 @@ export class Jobs extends React.Component<JobsProps, JobsState> {
public render(): React.ReactNode {
return (
<div>
- <DocumentTitle title="Careers at 0x" />
+ <MetaTags title={DOCUMENT_TITLE} description={DOCUMENT_DESCRIPTION} />
+ <DocumentTitle title={DOCUMENT_TITLE} />
<TopBar
blockchainIsLoaded={false}
location={this.props.location}