blob: 640da6e620942c9afb6b2097d26e582a1fbbb5f7 (
plain)
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 React from 'react';
import { Helmet } from 'react-helmet';
import brand from 'ba-api/brand';
import { PapperBlock } from 'ba-components';
class BlankPage extends React.Component {
render() {
const title = brand.name + ' - Blank Page';
const description = brand.desc;
return (
<div>
<Helmet>
<title>{title}</title>
<meta name="description" content={description} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} />
</Helmet>
<PapperBlock title="Blank Page" desc="Some text description">
Content
</PapperBlock>
</div>
);
}
}
export default BlankPage;
|