-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-seo.config.js
47 lines (46 loc) · 1.21 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
const SEO = {
defaultTitle: "Kevin Hirade's portfolio",
description:
'Enthusiast developer passionate about the technology world. I create and design fast and accessible programs to make your idea a real-world product.',
additionalMetaTags: [
{
property: 'keywords',
content:
'kevin hirade, kevin hirade portfolio, kevin, kevin portfolio, hiyudev, hiyudev portfolio',
},
{
name: 'theme_color',
content: '#7dd3fc',
},
],
additionalLinkTags: [
{
rel: 'icon',
href: '/assets/favicon.ico',
},
],
openGraph: {
type: 'website',
locale: 'en_US',
url: 'https://hiyudev.me/',
title: "Kevin Hirade's portfolio",
site_name: "Kevin Hirade's portfolio",
description:
'Enthusiast developer passionate about the technology world. I create and design fast and accessible programs to make your idea a real-world product.',
images: [
{
url: 'https://hiyudev.me/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;