generated from Hiyudev/boilerplate-nextjs-ts-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext-seo.config.js
49 lines (47 loc) · 1.06 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
const title = 'Github Enchanter List';
const description = 'List of cool static and dynamic badges for your README.';
const url = 'https://github-enchanter-list.vercel.app';
const SEO = {
defaultTitle: title,
description: description,
additionalMetaTags: [
{
property: 'keywords',
content:
'github badges, github dynamic badges, github enchant list, github enchanter list, github stats readme, github readme list, github readme badges',
},
{
name: 'theme_color',
content: '#10B981',
},
],
additionalLinkTags: [
{
rel: 'icon',
href: '/asset/favicon.ico',
},
],
openGraph: {
type: 'website',
locale: 'en_US',
url: url,
title: title,
site_name: title,
description: description,
images: [
{
url: `${url}/static/Banner.png`,
width: 1360,
height: 768,
alt: 'Og Image Alt',
},
],
imageWidth: 1360,
imageHeight: 768,
},
twitter: {
handle: '@Hiyudev',
cardType: 'summary_large_image',
},
};
export default SEO;