Merge pull request #1080 from SkynetLabs/update-dev-docs-link

Replace existing dev documentation links with new developer guide
This commit is contained in:
Karol Wypchło 2021-08-24 19:19:54 +02:00 committed by GitHub
commit 803234d00f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 16 deletions

View File

@ -13,7 +13,7 @@
- header: Developers
links:
- title: Developer Guide
href: https://support.siasky.net/the-technology/developing-on-skynet
href: https://docs.siasky.net
- title: API & SDK Documentation
href: https://siasky.net/docs/
- title: Portal Setup

View File

@ -1,6 +1,6 @@
export const OutlineButton = () => {
<a
href="https://support.siasky.net/the-technology/developing-on-skynet"
href="https://docs.siasky.net"
className="inline-block border-2 border-palette-600 text-palette-600 px-10 leading-10 rounded-full text-xs uppercase text-center mt-7"
>
Learn more

View File

@ -7,10 +7,7 @@ import Seo from "../components/seo";
import Link from "../components/Link";
const LearnMoreButton = () => (
<Link
href="https://support.siasky.net/the-technology/developing-on-skynet"
className="button-secondary-dark inline-block px-10 mt-7"
>
<Link href="https://docs.siasky.net" className="button-secondary-dark inline-block px-10 mt-7">
Learn more
</Link>
);
@ -47,7 +44,7 @@ const resources = [
{
title: "Skynet Developer Guide",
description: "Developer portal for resources and guides.",
href: "https://support.siasky.net/the-technology/developing-on-skynet",
href: "https://docs.siasky.net",
},
{
title: "Skynet SDK Docs",
@ -77,7 +74,7 @@ const resources = [
];
const docs = [
{ name: "Developer Guide", href: "https://support.siasky.net/the-technology/developing-on-skynet" },
{ name: "Developer Guide", href: "https://docs.siasky.net" },
{ name: "Skynet SDK Docs", href: "https://siasky.net/docs/" },
];

View File

@ -91,10 +91,7 @@ const IndexPage = ({ data }) => {
<div className="hidden desktop:inline-block">
<SectionTitle>Ready to build your application?</SectionTitle>
<Link
href="https://support.siasky.net/the-technology/developing-on-skynet"
className="button-secondary-dark inline-block px-10 mt-7"
>
<Link href="https://docs.siasky.net" className="button-secondary-dark inline-block px-10 mt-7">
Learn more
</Link>
</div>
@ -109,10 +106,7 @@ const IndexPage = ({ data }) => {
</div>
<div className="desktop:hidden mt-12 text-center">
<Link
href="https://support.siasky.net/the-technology/developing-on-skynet"
className="button-secondary-dark inline-block px-10 mt-7"
>
<Link href="https://docs.siasky.net" className="button-secondary-dark inline-block px-10 mt-7">
Learn more
</Link>
</div>