1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-02 08:20:22 +01:00

move quickstart to above the rest

This commit is contained in:
trentmc 2020-10-25 17:23:04 +01:00
parent 9d12f3bad2
commit 9a889b8dbe

View File

@ -60,6 +60,10 @@ const IndexPage = ({ data, location }) => (
<Layout location={location} header={<HeaderHome />}>
<Content>
<QuickRun />
<br/><br/><br/>
<ul className={styles.sections}>
{data.allSectionsYaml.edges.map(({ node }) => (
<li key={node.title} className={styles.section}>
@ -70,8 +74,6 @@ const IndexPage = ({ data, location }) => (
))}
</ul>
<QuickRun />
<Repositories />
</Content>
</Layout>