forked from jargonsdev/jargons.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.js
31 lines (28 loc) · 959 Bytes
/
constants.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
export const PROJECT_REPO_DETAILS = {
repoFullname: import.meta.env.PUBLIC_PROJECT_REPO,
repoMainBranchRef: import.meta.env.PUBLIC_PROJECT_REPO_BRANCH_REF
}
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"
];