generated from yehezkielgunawan/yehez-nexttailwind-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
next-seo.config.js
40 lines (39 loc) · 1.12 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
/** @type {import('next-seo').DefaultSeoProps} */
const defaultSEOConfig = {
defaultTitle: "Yehezkiel Gunawan",
description:
"An online portfolio & personal site, made using Next.js + Tailwind CSS",
canonical: "https://yehezgun.com",
openGraph: {
url: "https://yehezgun.com",
title: "Yehezkiel Gunawan",
description:
"An online portfolio & personal site, made using Next.js + Tailwind CSS",
type: "website",
images: [
{
url: "https://og-v2.yehezgun.com/api/og?title=Yehezkiel%20Gunawan&desc=A%20personal%20website%20by%20Yehezkiel%20Gunawan.%20A%20showcase%20about%20my%20projects,%20thoughts,%20and%20experiences%20as%20a%20frontend%20engineer.&siteName=yehezgun.com",
alt: "yehezgun.com og-image",
width: 1200,
height: 630,
},
],
site_name: "yehezgun.com",
},
twitter: {
handle: "@handle",
site: "@site",
cardType: "summary_large_image",
},
additionalLinkTags: [
{
rel: "icon",
href: "/yehez_avatar.svg",
},
{
rel: "manifest",
href: "/manifest.json",
},
],
};
export default defaultSEOConfig;