-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathabout.tsx
118 lines (108 loc) · 4.05 KB
/
about.tsx
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import Navbar from "@/components/Navbar";
import Head from "next/head";
import { NotionAPI } from "notion-client";
import { ExtendedRecordMap } from "notion-types";
import { NotionPage } from "@/components/NotionPage";
import { rootNotionPageId, previewImagesEnabled } from "@/lib/config";
import * as notion from "@/lib/notion";
export const getStaticProps = async (context: any) => {
const recordMap = await notion.getPage(rootNotionPageId);
return {
props: {
recordMap,
},
revalidate: 10,
};
};
export default function About({ recordMap }: { recordMap: ExtendedRecordMap }) {
function addJsonLd() {
return {
__html: `{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "About Us Bhagavad Gita AI",
"url": "https://bhagavadgita.ai/about",
"sameAs": [
"https://twitter.com/ShriKrishna",
],
"about": {
"@type": "Thing",
"name": "Bhagavad Gita"
},
"description": "GitaGPT is a free Bhagavad Gita AI chatbot that uses the wisdom of the Bhagavad Gita to help answer your day-to-day questions. It's simple, insightful, and powered by ChatGPT.",
"publisher": {
"@type": "Organization",
"name": "Ved Vyas Foundation",
"logo": {
"@type": "ImageObject",
"url": "https://sanskriti-ai.s3.ap-south-1.amazonaws.com/bhagavad-gita-ai.jpeg"
},
"sameAs": [
"https://twitter.com/ShriKrishna",
]
},
}
`,
};
}
return (
<>
<Head>
<title>About Us - Bhagavad Gita AI</title>
<link
rel="icon"
type="image/png"
href="https://sanskriti-ai.s3.ap-south-1.amazonaws.com/krishna.png"
/>
<meta
name="description"
content="GitaGPT is a free Bhagavad Gita AI chatbot that uses the wisdom of the Bhagavad Gita to help answer your day-to-day questions. It's simple, insightful, and powered by ChatGPT."
/>
<meta
name="keywords"
content="Bhagavad Gita AI, ChatGPT, GPT, Krishna"
/>
<meta name="robots" content="index,follow" />
<meta name="author" content="Ved Vyas Foundation" />
<meta property="og:title" content="About Us - Bhagavad Gita AI" />
<meta
property="og:description"
content="GitaGPT is a free Bhagavad Gita AI chatbot that uses the wisdom of the Bhagavad Gita to help answer your day-to-day questions. It's simple, insightful, and powered by ChatGPT."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bhagavadgita.ai/about" />
<meta
property="og:image"
content="https://sanskriti-ai.s3.ap-south-1.amazonaws.com/bhagavad-gita-ai.jpeg"
/>
<meta property="og:site_name" content="Bhagavad Gita AI" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="About Us - Bhagavad Gita AI" />
<meta
name="twitter:description"
content="GitaGPT is a free Bhagavad Gita AI chatbot that uses the wisdom of the Bhagavad Gita to help answer your day-to-day questions. It's simple, insightful, and powered by ChatGPT."
/>
<meta
name="twitter:image"
content="https://sanskriti-ai.s3.ap-south-1.amazonaws.com/bhagavad-gita-ai.jpeg"
/>
<meta name="twitter:site" content="@ShriKrishna" />
<meta name="twitter:creator" content="@ShriKrishna" />
<script
type="application/ld+json"
dangerouslySetInnerHTML={addJsonLd()}
key="gita-jsonld"
/>
</Head>
<Navbar></Navbar>
<main className="max-w-4xl pt-5 pb-2 mx-auto h-[100vh]">
<NotionPage
recordMap={recordMap}
rootPageId={rootNotionPageId}
previewImagesEnabled={previewImagesEnabled}
/>
</main>
</>
);
}