1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

add initial about copy

This commit is contained in:
Matthias Kretschmann 2019-04-08 11:19:13 +02:00
parent 3a8ee145c7
commit ca261e1025
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -3,7 +3,35 @@ import Route from '../components/templates/Route'
class About extends Component {
public render() {
return <Route title="About">Hello About</Route>
return (
<Route
title="About"
description="A marketplace to find and publish open data sets in the Ocean Network."
>
<p>
Commons is built on top of the Ocean{' '}
<a href="https://docs.oceanprotocol.com/concepts/testnets/#the-nile-testnet">
Nile test network
</a>{' '}
and is targeted at enthusiastic data scientists with some
crypto experience. It can be used with any Web3-capable
browser, like Firefox with MetaMask installed.
</p>
<ul>
<li>
<a href="https://blog.oceanprotocol.com/the-commons-marketplace-c57a44288314">
Read the blog post
</a>
</li>
<li>
<a href="https://github.com/oceanprotocol/commons">
Check out oceanprotocol/commons on GitHub
</a>
</li>
</ul>
</Route>
)
}
}