-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext-seo.config.js
More file actions
75 lines (72 loc) · 1.6 KB
/
next-seo.config.js
File metadata and controls
75 lines (72 loc) · 1.6 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/* eslint-disable import/no-anonymous-default-export */
export const siteTitle = "PortalJS Open Data Portal";
export const title = "PortalJS";
export const description =
"Discover thousands of datasets, publish your own, and request data via Portal – an open data platform powered by PortalJS.";
export const url = "https://portaljs-cloud-frontend-template.vercel.app";
export const imageUrl = `${url}/images/portaljs-frontend.png`;
export default {
defaultTitle: `${siteTitle} | ${title}`,
siteTitle,
description,
canonical: url,
openGraph: {
siteTitle,
description,
type: "website",
locale: "en_US",
url,
site_name: siteTitle,
images: [
{
url: imageUrl,
alt: siteTitle,
width: 1200,
height: 627,
type: "image/png",
},
],
},
twitter: {
handle: "@datopian",
site: "@PortalJS_",
cardType: "summary_large_image",
},
additionalMetaTags: [
{
name: "keywords",
content: "PortalJS, open data, datasets, data portal, Portal, datopian, frontend template",
},
{
name: "author",
content: "Datopian / PortalJS",
},
{
property: "og:image:width",
content: "1200",
},
{
property: "og:image:height",
content: "627",
},
{
property: "og:locale",
content: "en_US",
},
],
additionalLinkTags: [
{
rel: "icon",
href: "/favicon.ico",
},
{
rel: "apple-touch-icon",
href: "/apple-touch-icon.png",
sizes: "180x180",
},
{
rel: "manifest",
href: "/site.webmanifest",
},
]
};