more data

This commit is contained in:
Matthias Kretschmann 2018-11-09 16:44:04 +01:00
parent 660aaf3d17
commit c34682abb2
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 63 additions and 13 deletions

View File

@ -1,17 +1,49 @@
- name: 'keeper-contracts'
- name: keeper-contracts
description: '💧 Integration of TCRs, CPM and Ocean Tokens in Solidity'
links:
- name: 'GitHub'
url: 'https://github.com/oceanprotocol/keeper-contracts'
- name: GitHub
url: https://github.com/oceanprotocol/keeper-contracts
- name: Documentation
url: https://github.com/oceanprotocol/keeper-contracts/tree/develop/doc
- name: 'aquarius'
- name: aquarius
description: '🐋 Ocean Metadata API'
links:
- name: 'GitHub'
url: 'https://github.com/oceanprotocol/aquarius'
- name: GitHub
url: https://github.com/oceanprotocol/aquarius
- name: 'pleuston'
- name: brizo
description: 'Helping publishers to expose their services'
links:
- name: GitHub
url: https://github.com/oceanprotocol/brizo
- name: pleuston
description: '🦄 Web app for consumers to explore, download, and publish data assets.'
links:
- name: 'GitHub'
url: 'https://github.com/oceanprotocol/pleuston'
- name: GitHub
url: https://github.com/oceanprotocol/pleuston
- name: squid-js
description: '🦑 JavaScript client library for Ocean Protocol'
links:
- name: GitHub
url: https://github.com/oceanprotocol/squid-js
- name: squid-py
description: '🦑 Python client library for Ocean Protocol'
links:
- name: GitHub
url: https://github.com/oceanprotocol/squid-py
- name: squid-java
description: '🦑 Java client library for Ocean Protocol'
links:
- name: GitHub
url: https://github.com/oceanprotocol/squid-java
- name: secret-store-client-js
description: '🔑JavaScript implementation of the parity secret store for use in ocean.'
links:
- name: GitHub
url: https://github.com/oceanprotocol/secret-store-client-js

View File

@ -8,7 +8,7 @@ const Component = ({ name, description, links }) => (
<h1 className={styles.componentName}>{name}</h1>
<p>{description}</p>
<ul>
<ul className={styles.componentLinks}>
{links.map(link => (
<li key={link.url}>
<a href={link.url}>{link.name}</a>
@ -50,9 +50,9 @@ const Components = () => (
<div className={styles.quickrun}>
<strong>
Wanna quickly get an Ocean network running on your
machine?{' '}
machine? Check out{' '}
<a href="https://github.com/oceanprotocol/docker-images">
Check out docker-images
🐳 docker-images
</a>
.
</strong>

View File

@ -38,7 +38,7 @@
}
.component {
padding: $spacer / 2;
padding: $spacer / $line-height;
border: 1px solid $brand-grey-lighter;
border-radius: $border-radius;
margin-bottom: 5%;
@ -52,3 +52,21 @@
font-size: $font-size-large;
margin-top: 0;
}
.componentLinks {
margin: 0;
padding: 0;
margin-left: -($spacer / 2);
li {
display: inline-block;
padding: 0;
margin-left: $spacer / 2;
&:before { display: none; }
}
a {
}
}