diff --git a/content/concepts/architecture.md b/content/concepts/architecture.md index 4cdd8602..21252d12 100644 --- a/content/concepts/architecture.md +++ b/content/concepts/architecture.md @@ -1,3 +1,6 @@ --- title: Architecture +description: The architecture of Ocean Protocol with all its components and how they work together. --- + +![Ocean Protocol Components](../images/components.png 'Ocean Protocol Components') diff --git a/content/concepts/ecosystem.md b/content/concepts/ecosystem.md index 362efcc8..8f74a440 100644 --- a/content/concepts/ecosystem.md +++ b/content/concepts/ecosystem.md @@ -1,3 +1,12 @@ --- title: Ecosystem +description: The Ocean Protocol network consists of various components. --- + +Learn about all of them here. + +- 💧 keeper +- 🐋 aquarius +- brizo +- 🦄 pleuston +- 🦑 squid diff --git a/content/concepts/introduction.md b/content/concepts/introduction.md index cda8255c..3d71dac7 100644 --- a/content/concepts/introduction.md +++ b/content/concepts/introduction.md @@ -1,5 +1,6 @@ --- title: Introduction +description: Get up to speed with Ocean Protocol --- What is Ocean Protocol? diff --git a/content/concepts/terminology.md b/content/concepts/terminology.md index 04fe91aa..746182fe 100644 --- a/content/concepts/terminology.md +++ b/content/concepts/terminology.md @@ -1,9 +1,8 @@ --- title: Terminology +description: Terminology specific to Ocean Protocol. --- -There is terminology specific to Ocean Protocol. - ## Asset A data set or data service. diff --git a/content/images/components.png b/content/images/components.png new file mode 100644 index 00000000..a23edb59 Binary files /dev/null and b/content/images/components.png differ diff --git a/gatsby-config.js b/gatsby-config.js index 6b220479..fcfe2ae7 100755 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -26,9 +26,14 @@ module.exports = { { resolve: 'gatsby-remark-images', options: { - maxWidth: 600 + maxWidth: 756, + quality: 80, + withWebp: true, + linkImagesToOriginal: false, + showCaptions: true } }, + 'gatsby-remark-smartypants', 'gatsby-remark-prismjs', 'gatsby-remark-autolink-headers' ] diff --git a/package.json b/package.json index b2a79ab2..102ca927 100755 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "gatsby-remark-autolink-headers": "^2.0.10", "gatsby-remark-images": "^2.0.6", "gatsby-remark-prismjs": "^3.0.3", + "gatsby-remark-smartypants": "^2.0.6", "gatsby-source-filesystem": "^2.0.7", "gatsby-transformer-remark": "^2.1.11", "gatsby-transformer-sharp": "^2.1.8", diff --git a/src/components/HeaderSection.module.scss b/src/components/HeaderSection.module.scss index 54d15814..d8b06daf 100644 --- a/src/components/HeaderSection.module.scss +++ b/src/components/HeaderSection.module.scss @@ -7,6 +7,6 @@ .headerSectionTitle { margin: 0; - font-size: $font-size-h4; + font-size: $font-size-large; color: $brand-grey-light; } diff --git a/src/components/Sidebar.jsx b/src/components/Sidebar.jsx index b6da1054..c7677c05 100644 --- a/src/components/Sidebar.jsx +++ b/src/components/Sidebar.jsx @@ -3,25 +3,6 @@ import PropTypes from 'prop-types' import { Link } from 'gatsby' import styles from './Sidebar.module.scss' -function groupExpanded(items, pathname) { - var breakException = {} - - try { - items.forEach(item => { - if (item.link === pathname) { - throw breakException - } - }) - } catch (e) { - if (e !== breakException) { - throw e - } else { - return true - } - } - return false -} - const SidebarLink = ({ link, title, linkClasses }) => { if (link) { if (link.match(/^\s?http(s?)/gi)) { @@ -82,41 +63,25 @@ export default class Sidebar extends Component { } return ( -