blob: 7068ed5d16490b81b42ff291e4043447e6b4f4d0 (
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
|
import React from 'react';
import { Helmet } from 'react-helmet';
import brand from 'ba-api/brand';
import imgData from 'ba-api/imgDataMasonry';
import { PhotoGallery } from 'ba-components';
class Photos extends React.Component {
render() {
const title = brand.name + ' - Photo Gallery';
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>
<PhotoGallery imgData={imgData} />
</div>
);
}
}
export default Photos;
|