-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-seo.config.js
35 lines (34 loc) · 1.08 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
const defaultSEOConfig = {
title: "Matt | Full Stack Web Developer",
description:
"Software Engineer • Wordpress Developer • AWS • Google Cloud Platform • Playwright • Docker • Gamer • Tech Enthusiast",
cannonical: `https://${process.env.NEXT_PUBLIC_WEBAPP_LINK}/`,
openGraph: {
type: "website",
url: `https://${process.env.NEXT_PUBLIC_WEBAPP_LINK}/`,
site_name: "Matt",
title: "Matt | Full Stack Web Developer",
description:
"Software Engineer • Wordpress Developer • AWS • Google Cloud Platform • Playwright • Docker • Gamer • Tech Enthusiast",
images: [
{
url: "https://res.cloudinary.com/jealousgx/image/upload/v1728145204/cover-og.png",
width: 1200,
height: 630,
alt: "Matt's Portfolio Cover Page",
},
],
profile: {
firstName: "Abdul Mateen",
lastName: "Khilji",
username: "jealousgx",
gender: "male",
},
},
twitter: {
handle: "@JealousGx",
site: "@JealousGx",
cardType: "summary_large_image",
},
};
export default defaultSEOConfig;