aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/MetaTags.tsx
blob: 9bb33f7ab81569bc3fd905f467734a57fc215010 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import * as React from 'react';
import { Helmet } from 'react-helmet';

import { withContext, Props } from './withContext';

interface MetaTagsProps extends Props {
    imgSrc?: string;
}

function MetaTags(props: MetaTagsProps) {
    const { title, imgSrc = '/images/og_image.png' } = props;
    const description = props.tagline;
    return (
        <Helmet>
            <title>{props.title}</title>
            <meta name="description" content={description} />
            <link rel="shortcut icon" href={`/favicons/${props.name}.ico`} />
            <meta property="og:title" content={title} />
            <meta property="og:description" content={description} />
            <meta property="og:type" content="website" />
            <meta property="og:image" content={imgSrc} />
            <meta name="twitter:site" content="@0xproject" />
            <meta name="twitter:image" content={imgSrc} />
        </Helmet>
    );
}

export default withContext(MetaTags);