diff --git a/data/repositories.yml b/data/repositories.yml index fe5f1234..2950318e 100644 --- a/data/repositories.yml +++ b/data/repositories.yml @@ -18,10 +18,16 @@ - name: squid-js - name: squid-py - name: squid-java - - name: secret-store-client-js - - name: secret-store-client-py - - name: secret-store-client-java + +- group: OceanDB + items: - name: oceandb-mongodb-driver - name: oceandb-bigchaindb-driver - name: oceandb-elasticsearch-driver - name: oceandb-driver-interface + +- group: Parity Secret Store + items: + - name: secret-store-client-js + - name: secret-store-client-py + - name: secret-store-client-java diff --git a/src/components/Repositories/RepositoryList.jsx b/src/components/Repositories/RepositoryList.jsx index 7107e178..06e83f00 100644 --- a/src/components/Repositories/RepositoryList.jsx +++ b/src/components/Repositories/RepositoryList.jsx @@ -4,12 +4,12 @@ import Repository from './Repository' import styles from './RepositoryList.module.scss' const RepositoryList = ({ repositories }) => ( -
+
{repositories.map(({ node }) => ( -
-

{node.group}

+
+

{node.group}

-
+
{node.items.map(item => ( ( return (
+ +
+

+ Repositories +

+

+ + Most of our repositories are open source and we + listed the key repositories here. Start with the{' '} + + software components + {' '} + document for an introduction into the components + creating the Ocean network. + +

+
+
) diff --git a/src/components/Repositories/index.module.scss b/src/components/Repositories/index.module.scss index 9e430c8c..d0b422fd 100644 --- a/src/components/Repositories/index.module.scss +++ b/src/components/Repositories/index.module.scss @@ -2,4 +2,25 @@ .repositories { margin-top: $spacer * 2; + + > header { + @media (min-width: $break-point--medium) { + max-width: 33rem; + margin: auto; + } + } +} + +.repositoriesTitle { + text-align: center; + display: block; + margin-top: 0; + margin-bottom: $spacer / 2; + font-size: $font-size-h3; +} + +.repositoriesText { + text-align: center; + margin-bottom: $spacer; + color: $brand-grey-light; }