diff options
author | Fred Carlsen <fred@sjelfull.no> | 2018-12-20 07:06:39 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-20 07:06:39 +0800 |
commit | 531ed5496158ed318cc8313daa1a200f67b1b6dd (patch) | |
tree | 20d61d7cb32359715e39981a5ca37217c82260d8 /packages/website/ts/@next/pages/landing.tsx | |
parent | 5eb316f5d832d0e7ffc8a3a3858350cc13af3dcf (diff) | |
download | dexon-0x-contracts-531ed5496158ed318cc8313daa1a200f67b1b6dd.tar.gz dexon-0x-contracts-531ed5496158ed318cc8313daa1a200f67b1b6dd.tar.zst dexon-0x-contracts-531ed5496158ed318cc8313daa1a200f67b1b6dd.zip |
Fix page titles
Diffstat (limited to 'packages/website/ts/@next/pages/landing.tsx')
-rw-r--r-- | packages/website/ts/@next/pages/landing.tsx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/packages/website/ts/@next/pages/landing.tsx b/packages/website/ts/@next/pages/landing.tsx index ae560e8e3..c9520f261 100644 --- a/packages/website/ts/@next/pages/landing.tsx +++ b/packages/website/ts/@next/pages/landing.tsx @@ -1,10 +1,11 @@ import * as React from 'react'; -import { SiteWrap } from 'ts/@next/components/siteWrap'; +import DocumentTitle from 'react-document-title'; -import { SectionLandingAbout } from 'ts/@next/components/sections/landing/about'; -import { SectionLandingClients } from 'ts/@next/components/sections/landing/clients'; -import { SectionLandingCta } from 'ts/@next/components/sections/landing/cta'; -import { SectionLandingHero } from 'ts/@next/components/sections/landing/hero'; +import {SectionLandingAbout} from 'ts/@next/components/sections/landing/about'; +import {SectionLandingClients} from 'ts/@next/components/sections/landing/clients'; +import {SectionLandingCta} from 'ts/@next/components/sections/landing/cta'; +import {SectionLandingHero} from 'ts/@next/components/sections/landing/hero'; +import {SiteWrap} from 'ts/@next/components/siteWrap'; import { ModalContact } from 'ts/@next/components/modals/modal_contact'; @@ -23,6 +24,7 @@ export class NextLanding extends React.Component<Props> { public render(): React.ReactNode { return ( <SiteWrap theme="dark"> + <DocumentTitle title="0x: The protocol for trading tokens on Ethereum" /> <SectionLandingHero /> <SectionLandingAbout /> <SectionLandingClients /> |