-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathmockConfig.js
More file actions
84 lines (84 loc) · 1.96 KB
/
mockConfig.js
File metadata and controls
84 lines (84 loc) · 1.96 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
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
export const mockConfig = {
site: {
buildTime: "2026-04-30T14:30:00.000Z",
siteMetadata: {
searchableAttributes: ["prefLabel"],
customDomain: "",
gitCommit: "",
repositoryUrl: "",
colors: {
skoHubWhite: "rgb(255, 255, 255)",
skoHubDarkColor: "rgb(15, 85, 75)",
skoHubMiddleColor: "rgb(20, 150, 140)",
skoHubLightColor: "rgb(40, 200, 175)",
skoHubThinColor: "rgb(55, 250, 210)",
skoHubBlackColor: "rgb(5, 30, 30)",
skoHubAction: "rgb(230, 0, 125)",
skoHubNotice: "rgb(250, 180, 50)",
skoHubDarkGrey: "rgb(155, 155, 155)",
skoHubMiddleGrey: "rgb(200, 200, 200)",
skoHubLightGrey: "rgb(235, 235, 235)",
},
logo: "skohub-signet-color.svg",
title: "SkoHub Vocabs",
fonts: {
bold: {
font_family: "Ubuntu",
font_style: "normal",
font_weight: 700,
name: "ubuntu-v20-latin-700",
},
regular: {
font_family: "Ubuntu",
font_style: "normal",
font_weight: 400,
name: "ubuntu-v20-latin-regular",
},
},
},
},
allConceptScheme: {
edges: [
{
node: {
id: "http://w3id.org/",
fields: {
languages: ["de", "en"],
},
},
},
{
node: {
id: "http://w3id.org/cs2/",
fields: {
languages: ["en"],
},
},
},
{
node: {
id: "http://example.org/hashURIConceptScheme#scheme",
fields: {
languages: ["de", "en"],
},
},
},
{
node: {
id: "http://one-lang/w3id.org/",
fields: {
languages: ["de"],
},
},
},
{
node: {
id: "http://no-in-scheme/w3id.org/",
fields: {
languages: ["de", "en", "uk"],
},
},
},
],
},
}