-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnext-seo.config.js
45 lines (41 loc) · 998 Bytes
/
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
const title = 'love4heroes';
const description =
'An app to send thank you cards to frontline workers. The mission of this app is to let people share gratitude for frontline workers.';
const SEO = {
title,
description,
canonical: 'https://love4heroes.online',
openGraph: {
type: 'website',
locale: 'en_IE',
url: 'https://love4heroes.online',
title,
description,
images: [
{
url: 'https://love4heroes.online/favicon/large-og.png',
alt: title,
width: 1200,
height: 1200,
},
],
},
};
export default SEO;
// EXAMPLES
{
/*
const title = 'Next.js Tailwind Starter';
const description = 'your description';
const url = 'https://theodorusclarence.com';
<NextSeo
title={title}
description={description}
canonical={url}
openGraph={{
url,
title,
description,
}}
/>; */
}