-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathnext-seo.config.ts
64 lines (63 loc) · 1.56 KB
/
next-seo.config.ts
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
const config = {
title: 'Easy Pastes - Easiest Way to create and share code pastes',
description: `Use Easy Pastes to create, store, share code snippets by simply pasting them with syntax highlight.`,
additionalMetaTags: [
{
property: 'keywords',
content: 'paste, easypastes, create, pastebin, git, github, gitlab'
},
{
name: 'google-site-verification',
content: 'NdkMJQSa7meePpnwqOlgUDjoKAj8_o6G2rYH-B-1Wwo'
},
{
name: 'theme-color',
content: '#1A202C'
},
{
name: 'color-scheme',
content: 'dark'
}
],
additionalLinkTags: [
{
rel: 'icon',
href: '/logo.png'
},
{
rel: 'apple-touch-icon',
href: '/logo.png',
sizes: '100x100'
},
{
rel: 'manifest',
href: '/manifest.json'
}
],
openGraph: {
type: 'website',
locale: 'en_US',
url: 'https://easypastes.tk',
title: 'Easy Pastes - Easiest Way to create and share code pastes',
description: `Use Easy Pastes to create, store, share code snippets by simply pasting them with syntax highlight.`,
images: [
{
url: 'https://easypastes.tk/logo.png',
width: 100,
height: 100,
alt: 'Og Image Alt'
}
],
site_name: 'Easy Pastes',
imageWidth: 1200,
imageHeight: 1200
},
twitter: {
creator: '@MaxProgramming1',
cardType: 'summary',
image: 'https://easypastes.tk/logo.png',
title: 'Easy Pastes - Easiest Way to create and share code pastes',
url: 'https://easypastes.tk'
}
};
export default config;