forked from smaranjitghose/doc2pen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metaData.js
39 lines (37 loc) · 1.07 KB
/
metaData.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
36
37
38
39
// metadata(title, description, keywords) for pages in the app
const data = {
home: {
title: "Doc2pen",
description:
"A student's savior to submit those assignments by just typing them out and getting it handwritten on the go!",
keywords: "doc2pen, home, student",
},
editor: {
title: "Doc2pen - Editor",
description:
"Editor is a tool to help you convert your typed documents into handwritten.",
keywords: "doc2pen, editor",
},
sketch: {
title: "Doc2pen - Sketch",
description: "Sketch is a tool to help you create your own art.",
keywords: "doc2pen, sketch",
},
mediaManip: {
title: "Doc2pen - Media Manip",
description:
"File converter is a tool to help you to convert files in specific formats.",
keywords: "doc2pen, mediaManip",
},
notFound: {
title: "Doc2pen - 404",
description: "Uh ohh Looks like you encountered a 404 not found error.",
keywords: "doc2pen, 404",
},
contact: {
title: "Doc2pen - Contact us",
description: "Contact and get in touch with us.",
keywords: "doc2pen, contact, contact us",
},
};
export default data;