-
Notifications
You must be signed in to change notification settings - Fork 1
/
next-seo-config.ts
52 lines (51 loc) · 1.24 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
export const NEXT_SEO_DEFAULT = {
title: "My-Gita",
description:
"Explore the timeless wisdom of the Bhagavad Gita. Discover the teachings of Lord Krishna and their relevance to modern life chapter/verse wise",
canonical: "https://my-gita.vercel.app/",
additionalLinkTags: [
{
rel: "icon",
href: "/favicon.ico",
},
{
rel: "icon",
href: "/favicon-32x32.png",
sizes: "32x32",
},
{
rel: "icon",
href: "/favicon-16x16.png",
sizes: "16x16",
},
{
rel: "apple-touch-icon",
href: "/touch-icon-ipad.jpg",
sizes: "76x76",
},
{
rel: "manifest",
href: "/manifest.json",
},
],
openGraph: {
type: "website",
locale: "en_IE",
url: "https://my-gita.vercel.app/",
siteName: "My-Gita",
title: "My-Gita",
description:
"Explore the timeless wisdom of the Bhagavad Gita. Discover the teachings of Lord Krishna and their relevance to modern life chapter/verse wise",
images: [
{
url: "https://i.imgur.com/86wv8cm.png",
alt: "Cover Image",
},
],
},
twitter: {
cardType: "summary_large_image",
site: "https://my-gita.vercel.app/",
image: "https://i.imgur.com/86wv8cm.png",
},
};