-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext-seo.config.ts
27 lines (26 loc) · 1.03 KB
/
next-seo.config.ts
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
const seoConfig = {
title: "Aayush Mohan's Portfolio",
description:
"Web developer passionate about AI/ML, pursuing B.Tech in AI/ML. Expertise in JavaScript, TypeScript, React, and Node.js. Actively exploring deep learning applications. Let's connect to create innovative web solutions and explore the future of technology together!",
openGraph: {
type: "website",
url: "https://aayushmohan.dev",
title: "Aayush Mohan's Portfolio",
description:
"Web developer passionate about AI/ML, pursuing B.Tech in AI/ML. Expertise in JavaScript, TypeScript, React, and Node.js. Actively exploring deep learning applications. Let's connect to create innovative web solutions and explore the future of technology together!",
images: [
{
url: "https://aayushmohan.dev/images/AayushMohan.jpg",
width: 800,
height: 600,
alt: "Aayush Mohan",
},
],
},
twitter: {
handle: "@AayushMohan",
site: "@AayushMohan",
cardType: "summary_large_image",
},
};
export default seoConfig;