-
Notifications
You must be signed in to change notification settings - Fork 416
/
next-seo.config.js
35 lines (34 loc) · 996 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
const defaultSEOConfig = {
title: "Anish De | Fullstack Developer",
description:
"10th grader • Fullstack Web Developer • Web3 Enthusiast • Blogger • Tech Enthusiast",
cannonical: "https://anishde.dev/",
openGraph: {
type: "website",
url: "https://anishde.dev/",
site_name: "Anish De",
title: "Anish De | Fullstack Developer",
description:
"10th grader • Fullstack Web Developer • Web3 Enthusiast • Blogger • Tech Enthusiast",
images: [
{
url: "https://res.cloudinary.com/anishde12020/image/upload/v1654360780/Blogfolio/og.png",
width: 1200,
height: 630,
alt: "Anish De's Portfolio Site's Opengraph Image",
},
],
profile: {
firstName: "Anish",
lastName: "De",
username: "AnishDe12020",
gender: "male",
},
},
twitter: {
handle: "@AnishDe12020",
site: "@AnishDe12020",
cardType: "summary_large_image",
},
};
export default defaultSEOConfig;