-
-
Notifications
You must be signed in to change notification settings - Fork 326
/
next-seo.config.js
51 lines (51 loc) · 1.12 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
export default {
defaultTitle: 'readme.so',
description: `Use readme.so's markdown editor and templates to easily create a ReadMe for your projects`,
additionalMetaTags: [
{
property: 'keywords',
content: 'readme, easiest, create, markdown, git, github, gitlab',
},
{
name: 'theme_color',
content: '#10B981',
},
],
additionalLinkTags: [
{
rel: 'icon',
href: '/favicon.ico',
},
{
rel: 'apple-touch-icon',
href: '/icons/icon-96x96.png',
sizes: '96x96',
},
{
rel: 'manifest',
href: '/manifest.json',
},
],
openGraph: {
type: 'website',
locale: 'en_US',
url: 'https://readme.so/',
title: 'readme.so',
description: `Use readme.so's markdown editor and templates to easily create a ReadMe for your projects`,
images: [
{
url: 'https://readme.so/readme.png',
width: 375,
height: 375,
alt: 'Og Image Alt',
},
],
site_name: 'readme.so',
imageWidth: 1200,
imageHeight: 1200,
},
twitter: {
handle: '@katherinecodes',
cardType: 'summary',
},
}