-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
next-seo.config.js
38 lines (37 loc) · 1.2 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
/** @type {import('next-seo').DefaultSeoProps} */
const defaultSEOConfig = {
title: "Yehez Shortin",
titleTemplate: "%s",
defaultTitle: "Yehez Shortin",
description:
"Yehezkiel Gunawan's personalized link shortener. (Made using tinyurl API)",
canonical: "https://shortin.yehezgun.com",
openGraph: {
url: "https://shortin.yehezgun.com",
title: "Yehez Shortin | Personalized Link Shortener",
description:
"Yehezkiel Gunawan's personalized link shortener. (Made using tinyurl API)",
type: "website",
images: [
{
url: "https://og.yehezgun.com/api/base?description=A%20personalized%20link%20shortener%20by%20Yehezkiel%20Gunawan&logo=https%3A%2F%2Fimage.flaticon.com%2Ficons%2Fpng%2F512%2F1242%2F1242462.png&siteName=shortin.yehezgun.com&templateTitle=Shortin&theme=dark",
alt: "shortin.yehezgun.com og-image",
width: 800,
height: 600,
},
],
site_name: "yehez-shortin",
},
twitter: {
handle: "@handle",
site: "@site",
cardType: "summary_large_image",
},
additionalLinkTags: [
{
rel: "icon",
href: "https://image.flaticon.com/icons/png/512/1242/1242462.png",
},
],
};
export default defaultSEOConfig;