-
Notifications
You must be signed in to change notification settings - Fork 2
/
next-seo.config.ts
37 lines (35 loc) · 1.1 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
28
29
30
31
32
33
34
35
36
37
import { DefaultSeoProps } from "next-seo";
const SEO: DefaultSeoProps = {
title: "Should you use Angular?",
description:
"A website that helps you decide whether to use Angular in your next project or not, backed by facts and science, sponsored by carrot farmers.",
canonical: "https://angular.alaazorkane.me/",
openGraph: {
title: "Should you use Angular in your next project?",
description:
"A website that helps you decide whether to use Angular in your next project or not, backed by facts and science, sponsored by carrot farmers.",
type: "website",
locale: "en_EN",
url: "https://angular.alaazorkane.me/",
site_name: "Angular",
images: [
{
url: "https://angular.alaazorkane.me/[email protected]",
alt: "Angular Carrot Farmer",
width: 600,
height: 314,
},
{
url: "https://angular.alaazorkane.me/[email protected]",
alt: "Angular Carrot Farmer",
width: 1200,
height: 628,
},
],
},
twitter: {
handle: "@AlaaZork",
cardType: "summary_large_image",
},
};
export default SEO;