1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00
This commit is contained in:
Matthias Kretschmann 2020-11-14 00:06:13 +01:00
parent 3361859015
commit 459e80b9ce
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -37,11 +37,9 @@ const SectionLink = ({ to, title, color, children }) => {
<SectionBox to={to} className={classNames}>
<h3 className={styles.sectionTitle}>{title}</h3>
<p className={styles.sectionText}>{children}</p>
{title !== 'API References' && (
<span className={styles.sectionMore}>
Learn More <Arrow />
</span>
)}
<span className={styles.sectionMore}>
Learn More <Arrow />
</span>
</SectionBox>
)
}