-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnext-seo.config.js
More file actions
36 lines (36 loc) · 879 Bytes
/
Copy pathnext-seo.config.js
File metadata and controls
36 lines (36 loc) · 879 Bytes
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
/**
* @type {import('next-seo').DefaultSeoProps}
* @see https://github.com/garmeeh/next-seo#readme
*/
module.exports = {
defaultTitle: `CollAction | Sustainable choices made easy`,
description: `Do you want to make the world a better place? Do your actions feel like a drop in the ocean? Join our CrowdActions and see how much impact we can make together.`,
openGraph: {
type: 'website',
site_name: 'CollAction',
images: [
{
url: 'https://www.collaction.org/logo-green-large.png',
alt: 'CollAction Logo',
type: 'image/png',
width: 640,
height: 336,
},
],
},
twitter: {
cardType: 'summary_large_image',
},
additionalLinkTags: [
{
rel: 'icon',
href: '/favicon.ico',
},
],
additionalMetaTags: [
{
name: 'theme-color',
content: '#2EB494',
},
],
};