final touches

This commit is contained in:
Karol Wypchlo 2021-04-01 18:36:16 +02:00
parent 0194955176
commit eda5fd6a3e
9 changed files with 11 additions and 10 deletions

View File

@ -1,7 +1,7 @@
- header: Skynet Labs - header: Skynet Labs
links: links:
- title: About us - title: About us
to: / to: /about
- title: Brand Guidelines - title: Brand Guidelines
href: https://support.siasky.net/key-concepts/skynet-brand-guidelines href: https://support.siasky.net/key-concepts/skynet-brand-guidelines
- title: Careers - title: Careers

View File

@ -2,7 +2,7 @@
title: "Sia Announces $3M Seed Round to Accelerate Development and Adoption of the Web3 platform Skynet" title: "Sia Announces $3M Seed Round to Accelerate Development and Adoption of the Web3 platform Skynet"
date: "2020-09-22" date: "2020-09-22"
description: "Paradigm leads the round of financing; Nebulous to solely focus on Skynet" description: "Paradigm leads the round of financing; Nebulous to solely focus on Skynet"
author: "Skynet Labs Inc" author: "Skynet Labs"
categories: ["press release"] categories: ["press release"]
avatar: "../images/skynet-avatar.png" avatar: "../images/skynet-avatar.png"
thumbnail: "../images/press-release.png" thumbnail: "../images/press-release.png"

View File

@ -2,7 +2,7 @@
title: "Skynet Introduces Premium Accounts, Sets the Foundation for New Creator Economies" title: "Skynet Introduces Premium Accounts, Sets the Foundation for New Creator Economies"
date: "2021-03-22" date: "2021-03-22"
description: "Premium accounts support creators while giving users up to 20 TB of data storage per month and other perks." description: "Premium accounts support creators while giving users up to 20 TB of data storage per month and other perks."
author: "Skynet Labs Inc" author: "Skynet Labs"
categories: ["press release"] categories: ["press release"]
avatar: "../images/skynet-avatar.png" avatar: "../images/skynet-avatar.png"
thumbnail: "../images/press-release.png" thumbnail: "../images/press-release.png"

View File

@ -2,7 +2,7 @@
title: "Skynet Announces SkyDB, Unlocking a Fully Decentralized Internet" title: "Skynet Announces SkyDB, Unlocking a Fully Decentralized Internet"
date: "2020-10-15" date: "2020-10-15"
description: "SkyDB enables decentralized social media to take on `The Social Dilemma`" description: "SkyDB enables decentralized social media to take on `The Social Dilemma`"
author: "Skynet Labs Inc" author: "Skynet Labs"
categories: ["press release"] categories: ["press release"]
avatar: "../images/skynet-avatar.png" avatar: "../images/skynet-avatar.png"
thumbnail: "../images/press-release.png" thumbnail: "../images/press-release.png"

View File

@ -2,7 +2,7 @@
title: "Sia Announces Skynet, the Storage Foundation for a Free Internet" title: "Sia Announces Skynet, the Storage Foundation for a Free Internet"
description: "Skynet is available with Sia version 1.4.3 and ready to use today!" description: "Skynet is available with Sia version 1.4.3 and ready to use today!"
date: "2020-02-18" date: "2020-02-18"
author: "Skynet Labs Inc" author: "Skynet Labs"
categories: ["press release"] categories: ["press release"]
avatar: "../images/skynet-avatar.png" avatar: "../images/skynet-avatar.png"
thumbnail: "../images/press-release.png" thumbnail: "../images/press-release.png"

View File

@ -4,7 +4,7 @@ module.exports = {
siteMetadata: { siteMetadata: {
title: `Skynet`, title: `Skynet`,
description: `Skynet is a decentralized file sharing and content distribution protocol`, description: `Skynet is a decentralized file sharing and content distribution protocol`,
author: `Skynet Labs Inc`, author: `Skynet Labs`,
siteUrl: `https://siasky.net`, siteUrl: `https://siasky.net`,
image: `https://siasky.net/icons/icon-512x512.png`, image: `https://siasky.net/icons/icon-512x512.png`,
}, },
@ -57,6 +57,7 @@ module.exports = {
heading: "font-semibold text-palette-600", heading: "font-semibold text-palette-600",
paragraph: "font-content text-base text-palette-400", paragraph: "font-content text-base text-palette-400",
strong: "font-semibold", strong: "font-semibold",
link: "text-primary hover:text-primary-light transition-colors duration-200",
"heading[depth=1]": "text-4xl", "heading[depth=1]": "text-4xl",
"heading[depth=2]": "text-3xl", "heading[depth=2]": "text-3xl",
"paragraph + paragraph": "mt-8", "paragraph + paragraph": "mt-8",

View File

@ -3,7 +3,7 @@
"private": true, "private": true,
"description": "Skynet Labs official website", "description": "Skynet Labs official website",
"version": "0.1.0", "version": "0.1.0",
"author": "Skynet Labs Inc.", "author": "Skynet Labs.",
"dependencies": { "dependencies": {
"@fontsource/sora": "^4.2.2", "@fontsource/sora": "^4.2.2",
"@fontsource/source-sans-pro": "^4.2.2", "@fontsource/source-sans-pro": "^4.2.2",

View File

@ -10,7 +10,7 @@ const Footer = () => {
<div className="flex items-center"> <div className="flex items-center">
<LogoWhiteText /> <LogoWhiteText />
<span className="ml-8 text-palette-300 text-sm font-content hidden desktop:inline"> <span className="ml-8 text-palette-300 text-sm font-content hidden desktop:inline">
2021 Skynet Labs Inc. | All rights reserved 2021 Skynet Labs | All rights reserved
</span> </span>
</div> </div>

View File

@ -4,9 +4,9 @@ import { GatsbyImage, getImage } from "gatsby-plugin-image";
export function NewsSummary({ avatar, author, date }) { export function NewsSummary({ avatar, author, date }) {
return ( return (
<div className="flex space-x-4"> <div className="flex space-x-4">
{avatar && <GatsbyImage image={getImage(avatar)} alt={author || "Skynet Labs Inc"} className="rounded-full" />} {avatar && <GatsbyImage image={getImage(avatar)} alt={author || "Skynet Labs"} className="rounded-full" />}
<div className="flex flex-col text-xs justify-around h-10"> <div className="flex flex-col text-xs justify-around h-10">
<div className="text-palette-600">{author || "Skynet Labs Inc"}</div> <div className="text-palette-600">{author || "Skynet Labs"}</div>
{date && <div className="text-palette-400">{date}</div>} {date && <div className="text-palette-400">{date}</div>}
</div> </div>
</div> </div>