forked from US-GHG-Center/veda-config-ghg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
veda.config.js
65 lines (60 loc) · 1.86 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
65
module.exports = {
/**
* Glob path for the datasets.
*/
datasets: "./datasets/*.data.mdx",
/**
* Glob path for the 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",
storiesHubContent: "./overrides/theme/content/index.mdx",
storiesHubHero: "./overrides/theme/hero/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",
"/visit": "./custom-pages/visit/index.mdx",
"/teach": "./custom-pages/teach/index.mdx",
},
strings: {
stories: {
one: "Theme",
other: "Themes",
},
storiesBanner: "Nine themes, one Earth.",
dataCatalogBanner:
"These datasets offer a sample of the global, actionable, and regularly updated data products that Earth.gov will offer. This curated list is not a comprehensive accounting of all Earth data produced by the federal government and additional datasets will be added as they become available.",
},
theme: {
color: {
primary: "#0550D8",
link: "#1565EF",
},
type: {
base: {
color: "#1B2631",
family: '"Inter", sans-serif',
},
},
button: {
type: {
case: "none",
weight: 500,
},
},
},
};