-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.js
More file actions
36 lines (35 loc) · 1013 Bytes
/
config.js
File metadata and controls
36 lines (35 loc) · 1013 Bytes
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
const CONFIG = {
HEADING: "MITier: Tier rank MIT classes", // for the top of the page
META: {
// for social sharing, search engine results, etc.
TITLE: `MITier: Tier rank MIT classes`,
DESCRIPTION: `All in the title`,
URL: `https://mitier.vercel.app`,
SITE_NAME: `MITier`,
IMAGE_URL: `https://mitier.vercel.app/screenshot.jpg`, // full path, not relative
IMAGE_ALT_TEXT: `Example tier list of MIT classes`,
},
INITIAL_TIERS: {
// object containing tier : list of classes
S: ["8.01", "8.02", "18.01", "18.02", "7.012", "5.111"], // course IDs
A: [],
B: [],
C: [],
D: [],
},
TIER_COLORS: {
// thanks https://colorswall.com/palette/3297/
S: "#ff7f7e",
A: "#ffbf7f",
B: "#ffdf80",
C: "#feff7f",
D: "#beff7f",
},
SEARCH: {
INPUT_PLACEHOLDER: "Search courses",
NO_RESULTS_MESSAGE: "No results :(",
LOADING_MESSAGE: "Loading...",
},
SOURCE_CODE_URL: "https://github.com/katmh/mitier",
};
export default CONFIG;