-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next-seo.config.js
44 lines (42 loc) · 1.07 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
const canonicalUrl = 'https://aulianza.id';
const metaImage = 'https://cloud.aulianza.com/public/images/aulianza-id.png';
const metaDescription =
'Seasoned Software Engineer especially in Frontend side, with a passion for creating pixel-perfect web experiences';
const defaultSEOConfig = {
defaultTitle: 'Ryan Aulia - Personal Website',
description: metaDescription,
canonical: canonicalUrl,
openGraph: {
canonical: canonicalUrl,
title: 'Ryan Aulia - Personal Website',
description: metaDescription,
type: 'website',
images: [
{
url: metaImage,
alt: 'aulianza.id og-image',
width: 800,
height: 600,
},
{
url: metaImage,
alt: 'aulianza.id og-image',
width: 1200,
height: 630,
},
{
url: metaImage,
alt: 'aulianza.id og-image',
width: 1600,
height: 900,
},
],
site_name: 'aulianza.id',
},
twitter: {
handle: '@handle',
site: '@site',
cardType: 'summary_large_image',
},
};
export default defaultSEOConfig;