-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-seo.config.ts
84 lines (81 loc) · 1.65 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* @ref: https://github.com/garmeeh/next-seo */
const title = 'Jesus Ordosgoitty'
const defaultTitle = `${title} - Software Developer`
const description = "Hi fellow Layer 8 mate!, I am Jesus Ordosgoitty, a 98' born guy full-stack software developer mainly using Node, React and Python."
const url = 'https://jodaz.dev'
const ogImageUrl = '/images/og.png'
const keywords =
'ordosgoitty, jodaz, jesus, jesus ordosgoitty, portfolio, javascript, typescript, developer, software engineer, frontend, front-end, venezuela, caribe, fullstack, full-stack, full stack, mobile, react, react native, native'
const seo = {
titleTemplate: `%s – ${title}`,
defaultTitle,
description,
openGraph: {
description,
title,
locale: 'en_US',
type: 'website',
url,
canonical: url,
images: [
{
url: ogImageUrl,
width: 800,
height: 600,
alt: title
}
]
},
additionalMetaTags: [
{
name: 'keywords',
content: keywords
},
{
name: 'theme-color',
content: '#333333'
},
{
name: 'referer',
content: 'strict-origin'
}
],
additionalLinkTags: [
{
rel: 'icon',
type: 'image/x-icon',
href: '/favicon.ico?v=3'
},
{
rel: 'shortcut icon',
type: 'image/x-icon',
href: '/favicon.ico?v=3'
},
{
rel: 'icon',
type: 'image/png',
href: '/favicon-16x16.png?v=3',
sizes: '16x16'
},
{
rel: 'icon',
type: 'image/png',
href: '/favicon-32x32.png?v=3',
sizes: '32x32'
},
{
rel: 'apple-touch-icon',
href: '/apple-touch-icon.png?v=3'
},
{
rel: 'manifest',
href: '/manifest.json'
}
]
}
export {
seo as defaultSeo,
url as defaultUrl,
title as defaultTitle
}
export default seo