link developer resources (#85)

This commit is contained in:
Karol Wypchło 2020-03-12 11:56:11 +01:00 committed by GitHub
parent 075b0d618c
commit fc21e22675
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 5 deletions

View File

@ -67,7 +67,7 @@ export default function Footer() {
</a>
</li>
<li>
<a href="https://sia.tech/docs/" target="_blank" rel="noopener noreferrer">
<a href="https://sia.tech/docs/#skynet" target="_blank" rel="noopener noreferrer">
API Docs
</a>
</li>

View File

@ -19,9 +19,31 @@ export default function HomeSamples() {
return (
<div className="home-samples">
<Fade duration={700} distance="40px" bottom>
<p>Above are some code snippets for uploading and retrieving data.</p>
<p>
Skynet includes SDKs for popular programming languages that integrate seamlessly with your existing apps.
Above are some code snippets for uploading and retrieving data.
Skynet includes{" "}
<a
href="https://support.siasky.net/article/hrshqsn9wz-integrating-skynet"
target="_blank"
rel="noopener noreferrer"
className="link"
>
SDKs
</a>{" "}
for popular programming languages and{" "}
<a href="https://sia.tech/docs/#skynet" target="_blank" rel="noopener noreferrer" className="link">
APIs
</a>{" "}
that integrate seamlessly with your existing apps. You can follow this{" "}
<a
href="https://support.siasky.net/article/vmmzyes1uy-skynet-sia-set-up"
target="_blank"
rel="noopener noreferrer"
className="link"
>
guide
</a>{" "}
to setup a Sia Node.
</p>
</Fade>

View File

@ -10,12 +10,16 @@
}
p {
margin: 0 auto 48px;
margin: 0 auto 24px;
max-width: 460px;
@media (min-width: $largebp) {
font-size: 18px;
max-width: 500px;
max-width: 600px;
}
&:last-of-type {
margin-bottom: 48px;
}
}