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 - header: Developers
links: links:
- title: Developer Guide - title: Developer Guide
href: https://support.siasky.net/the-technology/developing-on-skynet href: https://docs.siasky.net
- title: API & SDK Documentation - title: API & SDK Documentation
href: https://siasky.net/docs/ href: https://siasky.net/docs/
- title: Portal Setup - title: Portal Setup

View File

@ -1,6 +1,6 @@
export const OutlineButton = () => { export const OutlineButton = () => {
<a <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" 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 Learn more

View File

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

View File

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