Skip to content

Commit

Permalink
Merge pull request #137 from NASA-IMPACT/banner-strings
Browse files Browse the repository at this point in the history
Customize banner texts
  • Loading branch information
nerik authored Sep 22, 2023
2 parents 8bdc5a5 + 7a7b95f commit 5166c30
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions veda.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,29 @@ module.exports = {
aboutContent: "./overrides/about.mdx",
// Content for the home page.
// Type: Content override
homeContent: './overrides/home/index.mdx',
homeContent: "./overrides/home/index.mdx",
// Content for the development page.
// Type: Content override
developmentContent: './overrides/development/index.mdx',
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"
pageFooter: "./overrides/components/page-footer/index.mdx",
},

strings: {
stories: {
one: 'Data Insights',
other: 'Data Insights'
}
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: {
Expand All @@ -44,14 +48,14 @@ module.exports = {
},
type: {
base: {
family: '"Inter", sans-serif'
}
family: '"Inter", sans-serif',
},
},
button: {
type: {
case: "uppercase",
weight: 400
}
}
weight: 400,
},
},
},
};

0 comments on commit 5166c30

Please sign in to comment.