-
Notifications
You must be signed in to change notification settings - Fork 0
/
next-seo.config.js
53 lines (51 loc) · 1.01 KB
/
next-seo.config.js
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { BRAND_IMAGE, OG_DESCRIPTION, OG_URL } from './src/constants';
const config = {
defaultTitle: 'Proof of Mission Protocol ',
additionalLinkTags: [
{
rel: 'icon',
href: `${OG_URL}/logo/madseed-logo.svg`
},
{
rel: 'apple-touch-icon',
href: `${OG_URL}/logo/icon-192x192.png`,
sizes: '192x192'
},
{
rel: 'manifest',
href: '/manifest.json'
}
],
openGraph: {
type: 'website',
url: OG_URL,
locale: 'en_IE',
site_name: 'Proof of mission protocol',
description: OG_DESCRIPTION,
images: [
{
type: 'image/png',
url: BRAND_IMAGE,
alt: 'pomp',
width: 1200,
height: 630
}
]
},
twitter: {
domain: OG_URL,
url: OG_URL,
desciption: OG_DESCRIPTION,
images: [
{
type: 'image/jpg',
url: BRAND_IMAGE,
alt: 'pomp'
}
],
handle: '@madseedxyz',
site: '@madseedxyz',
cardType: 'summary_large_image'
}
};
export default config;