final touches
This commit is contained in:
parent
0194955176
commit
eda5fd6a3e
|
@ -1,7 +1,7 @@
|
|||
- header: Skynet Labs
|
||||
links:
|
||||
- title: About us
|
||||
to: /
|
||||
to: /about
|
||||
- title: Brand Guidelines
|
||||
href: https://support.siasky.net/key-concepts/skynet-brand-guidelines
|
||||
- title: Careers
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Sia Announces $3M Seed Round to Accelerate Development and Adoption of the Web3 platform Skynet"
|
||||
date: "2020-09-22"
|
||||
description: "Paradigm leads the round of financing; Nebulous to solely focus on Skynet"
|
||||
author: "Skynet Labs Inc"
|
||||
author: "Skynet Labs"
|
||||
categories: ["press release"]
|
||||
avatar: "../images/skynet-avatar.png"
|
||||
thumbnail: "../images/press-release.png"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Skynet Introduces Premium Accounts, Sets the Foundation for New Creator Economies"
|
||||
date: "2021-03-22"
|
||||
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"]
|
||||
avatar: "../images/skynet-avatar.png"
|
||||
thumbnail: "../images/press-release.png"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Skynet Announces SkyDB, Unlocking a Fully Decentralized Internet"
|
||||
date: "2020-10-15"
|
||||
description: "SkyDB enables decentralized social media to take on `The Social Dilemma`"
|
||||
author: "Skynet Labs Inc"
|
||||
author: "Skynet Labs"
|
||||
categories: ["press release"]
|
||||
avatar: "../images/skynet-avatar.png"
|
||||
thumbnail: "../images/press-release.png"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
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!"
|
||||
date: "2020-02-18"
|
||||
author: "Skynet Labs Inc"
|
||||
author: "Skynet Labs"
|
||||
categories: ["press release"]
|
||||
avatar: "../images/skynet-avatar.png"
|
||||
thumbnail: "../images/press-release.png"
|
||||
|
|
|
@ -4,7 +4,7 @@ module.exports = {
|
|||
siteMetadata: {
|
||||
title: `Skynet`,
|
||||
description: `Skynet is a decentralized file sharing and content distribution protocol`,
|
||||
author: `Skynet Labs Inc`,
|
||||
author: `Skynet Labs`,
|
||||
siteUrl: `https://siasky.net`,
|
||||
image: `https://siasky.net/icons/icon-512x512.png`,
|
||||
},
|
||||
|
@ -57,6 +57,7 @@ module.exports = {
|
|||
heading: "font-semibold text-palette-600",
|
||||
paragraph: "font-content text-base text-palette-400",
|
||||
strong: "font-semibold",
|
||||
link: "text-primary hover:text-primary-light transition-colors duration-200",
|
||||
"heading[depth=1]": "text-4xl",
|
||||
"heading[depth=2]": "text-3xl",
|
||||
"paragraph + paragraph": "mt-8",
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"private": true,
|
||||
"description": "Skynet Labs official website",
|
||||
"version": "0.1.0",
|
||||
"author": "Skynet Labs Inc.",
|
||||
"author": "Skynet Labs.",
|
||||
"dependencies": {
|
||||
"@fontsource/sora": "^4.2.2",
|
||||
"@fontsource/source-sans-pro": "^4.2.2",
|
||||
|
|
|
@ -10,7 +10,7 @@ const Footer = () => {
|
|||
<div className="flex items-center">
|
||||
<LogoWhiteText />
|
||||
<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>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -4,9 +4,9 @@ import { GatsbyImage, getImage } from "gatsby-plugin-image";
|
|||
export function NewsSummary({ avatar, author, date }) {
|
||||
return (
|
||||
<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="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>}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Reference in New Issue