forked from US-GHG-Center/veda-config-ghg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
veda.config.js
64 lines (58 loc) · 1.71 KB
/
veda.config.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
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
module.exports = {
/**
* Glob path for the datasets.
*/
datasets: "./datasets/*.data.mdx",
/**
* Glob path for the stories.
*/
stories: "./stories/*.stories.mdx",
// App component and content overrides.
// See docs/CONFIGURATION.md for more information.
pageOverrides: {
// Content for the about page.
// Type: Content override
aboutContent: "./overrides/about.mdx",
// Content for the home page.
// Type: Content override
homeContent: "./overrides/home/index.mdx",
// Content for the development page.
// Type: Content override
developmentContent: "./overrides/development/index.mdx",
// Component for the home hero banner.
homeHero: "./overrides/components/home-hero/index.mdx",
// Component for the header brand.
headerBrand: "./overrides/components/header-brand/index.mdx",
// Component for the footer.
pageFooter: "./overrides/components/page-footer/index.mdx",
"/learn": "./custom-pages/learn/index.mdx"
},
strings: {
stories: {
one: "Data Insights",
other: "Data Insights",
},
storiesBanner:
"Explore the guided narratives below to learn more about greenhouse gas measurement, changes over time, events and human-related causes and contributions.",
dataCatalogBanner:
"This dashboard is for exploring key datasets that provide insight into greenhouse gas sources, sinks, emissions, fluxes, and events.",
},
theme: {
color: {
primary: "#082a64",
link: '#1565EF'
},
type: {
base: {
color: '#1B2631',
family: '"Inter", sans-serif',
},
},
button: {
type: {
case: "uppercase",
weight: 500,
},
},
},
};