-
Notifications
You must be signed in to change notification settings - Fork 0
/
next-seo.config.js
121 lines (118 loc) · 2.66 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
const canonicalUrl = 'http://frontendmentor-photosnap-website-anhek.vercel.app/'
const defaultTitle = 'Photosnap'
const defaultDescription =
'Photosnap is a platform for photographers and visual storytellers. We make it easy to share photos, tell stories and connect with others.'
export const SEO = {
defaultTitle: defaultTitle,
titleTemplate: 'Photosnap | %s',
canonical: canonicalUrl,
additionalLinkTags: [
{
rel: 'apple-touch-icon',
href: 'favicons/apple-icon-57x57.png',
sizes: '57x57',
},
{
rel: 'apple-touch-icon',
href: 'favicons/apple-icon-60x60.png',
sizes: '60x60',
},
{
rel: 'apple-touch-icon',
href: 'favicons/apple-icon-72x72.png',
sizes: '72x72',
},
{
rel: 'apple-touch-icon',
href: 'favicons/apple-icon-76x76.png',
sizes: '76x76',
},
{
rel: 'apple-touch-icon',
href: 'favicons/apple-icon-114x114.png',
sizes: '114x114',
},
{
rel: 'apple-touch-icon',
href: 'favicons/apple-icon-120x120.png',
sizes: '120x120',
},
{
rel: 'apple-touch-icon',
href: 'favicons/apple-icon-144x144.png',
sizes: '144x144',
},
{
rel: 'apple-touch-icon',
href: 'favicons/apple-icon-152x152.png',
sizes: '152x152',
},
{
rel: 'apple-touch-icon',
href: 'favicons/apple-icon-180x180.png',
sizes: '180x180',
},
{
rel: 'icon',
href: 'favicons/android-icon-192x192.png',
type: 'image/png',
sizes: '192x192',
},
{
rel: 'icon',
href: 'favicons/favicon-32x32.png',
type: 'image/png',
sizes: '32x32',
},
{
rel: 'icon',
href: 'favicons/favicon-96x96.png',
type: 'image/png',
sizes: '96x96',
},
{
rel: 'icon',
href: 'favicons/favicon-16x16.png',
type: 'image/png',
sizes: '16x16',
},
{
rel: 'manifest',
href: 'favicons/manifest.json',
},
],
additionalMetaTags: [
{
name: 'msapplication-TileColor',
content: '#ffffff',
},
{
name: 'msapplication-TileImage',
content: '/ms-icon-144x144.png',
},
{
name: 'theme-color',
content: '#ffffff',
},
],
openGraph: {
title: 'Photosnap',
description: defaultDescription,
type: 'website',
locale: 'en_IE',
url: canonicalUrl,
images: [
{
url: 'https://www.dropbox.com/s/artiep71z15vg82/photosnap-ogimage.jpg?raw=1',
width: 1200,
height: 630,
alt: 'Preview of the website',
},
],
},
twitter: {
handle: '@anhek_',
cardType: 'summary_large_image',
},
}
export default SEO