-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathconstants.js
More file actions
59 lines (55 loc) · 1.09 KB
/
constants.js
File metadata and controls
59 lines (55 loc) · 1.09 KB
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
export const PROJECT_REPO_DETAILS = {
repoFullname: import.meta.env.PUBLIC_PROJECT_REPO,
repoMainBranchRef: import.meta.env.PUBLIC_PROJECT_REPO_BRANCH_REF,
};
export const LABELS = {
NEW_WORD: "📖new-word",
EDIT_WORD: "📖edit-word",
VIA_EDITOR: "💻via-jargons-editor",
};
export const SITE_META_DESCRIPTION =
"A community-driven dictionary that simplifies software, engineering and tech terms for all levels. Curated by contributors, jargons.dev offers clear, easy-to-understand definitions.";
export const SITE_META_KEYWORDS = [
"dev jargon",
"dev jargons",
"software engineering terms",
"web dev terms",
"software jargons",
"software terms",
"developer jargons",
"web jargons",
"web development terms",
"software development jargons",
"software engineering dictionary",
"dev dictionary",
"developer dictionary",
"software development dictionary",
];
export const ALPHABETS = [
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"i",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"w",
"x",
"y",
"z",
];