2020-09-05 15:02:27 +03:00
|
|
|
import * as React from "react";
|
|
|
|
import * as Constants from "~/common/constants";
|
|
|
|
import * as System from "~/components/system";
|
|
|
|
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
|
|
|
|
import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper";
|
|
|
|
import WebsitePrototypeHeader from "~/components/core/NewWebsitePrototypeHeader";
|
|
|
|
import WebsitePrototypeFooter from "~/components/core/NewWebsitePrototypeFooter";
|
2020-09-06 20:08:58 +03:00
|
|
|
import CodeBlock from "~/components/system/CodeBlock";
|
2020-09-05 15:02:27 +03:00
|
|
|
|
|
|
|
const STYLES_ROOT = css`
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-09-07 02:24:36 +03:00
|
|
|
justify-content: space-between;
|
|
|
|
max-width: 1440px;
|
|
|
|
margin: -88px 0 0 0;
|
|
|
|
background-color: ${Constants.system.wall};
|
2020-09-05 15:02:27 +03:00
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_H1 = css`
|
2020-09-07 02:24:36 +03:00
|
|
|
font-size: 3.815rem;
|
2020-09-05 15:02:27 +03:00
|
|
|
line-height: 1.25;
|
|
|
|
width: 100%;
|
2020-09-07 02:24:36 +03:00
|
|
|
color: ${Constants.system.slate};
|
|
|
|
@media (max-width: ${Constants.sizes.tablet}px) {
|
|
|
|
font-size: 3.052rem;
|
|
|
|
padding: 0px 0px 16px 0px;
|
|
|
|
}
|
2020-09-05 15:02:27 +03:00
|
|
|
@media (max-width: ${Constants.sizes.mobile}px) {
|
|
|
|
font-size: 1.953rem;
|
2020-09-07 02:24:36 +03:00
|
|
|
padding: 0px 0px 8px 0px;
|
2020-09-05 15:02:27 +03:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_H2 = css`
|
2020-09-07 02:24:36 +03:00
|
|
|
font-size: 2.441em;
|
2020-09-05 15:02:27 +03:00
|
|
|
line-height: 1.25;
|
2020-09-07 02:24:36 +03:00
|
|
|
padding: 16px 0px 0 0px;
|
2020-09-05 15:02:27 +03:00
|
|
|
width: 100%;
|
2020-09-07 02:24:36 +03:00
|
|
|
color: ${Constants.system.slate};
|
|
|
|
@media (max-width: ${Constants.sizes.tablet}px) {
|
|
|
|
font-size: 1.563rem;
|
|
|
|
padding: 8px 0px 0px 0px;
|
|
|
|
}
|
2020-09-05 15:02:27 +03:00
|
|
|
@media (max-width: ${Constants.sizes.mobile}px) {
|
|
|
|
font-size: 1.25rem;
|
2020-09-07 02:24:36 +03:00
|
|
|
padding: 8px 0px 0 0px;
|
2020-09-05 15:02:27 +03:00
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_H3 = css`
|
2020-09-07 02:24:36 +03:00
|
|
|
font-size: 1.563rem;
|
2020-09-05 15:02:27 +03:00
|
|
|
line-height: 1.5;
|
2020-09-07 02:24:36 +03:00
|
|
|
padding: 16px 0px 0px 0px;
|
|
|
|
color: ${Constants.system.slate};
|
|
|
|
@media (max-width: ${Constants.sizes.tablet}px) {
|
|
|
|
font-size: 1.25rem;
|
|
|
|
padding: 8px 0px 0px 0px;
|
|
|
|
}
|
2020-09-05 15:02:27 +03:00
|
|
|
@media (max-width: ${Constants.sizes.mobile}px) {
|
|
|
|
font-size: 1rem;
|
2020-09-07 02:24:36 +03:00
|
|
|
padding: 8px 0px 0px 0px;
|
2020-09-05 15:02:27 +03:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_P = css`
|
|
|
|
font-size: 1rem;
|
2020-09-07 02:24:36 +03:00
|
|
|
padding: 16px 0px 0px 0px;
|
2020-09-05 15:02:27 +03:00
|
|
|
color: ${Constants.system.black};
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-05 15:02:27 +03:00
|
|
|
@media (max-width: ${Constants.sizes.mobile}px) {
|
|
|
|
font-size: 0.78rem;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-09-07 02:24:36 +03:00
|
|
|
const STYLES_SECTION_HERO = css`
|
|
|
|
width: 100vw;
|
|
|
|
padding: 30vh 88px 88px 88px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-07 02:24:36 +03:00
|
|
|
@media (max-width: ${Constants.sizes.mobile}px) {
|
|
|
|
padding: 40vh 24px 48px 24px;
|
|
|
|
display: block;
|
2020-09-05 15:02:27 +03:00
|
|
|
}
|
2020-09-07 02:24:36 +03:00
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_TEXT_BLOCK = css`
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 56vw;
|
|
|
|
align-self: center;
|
|
|
|
|
|
|
|
@media (max-width: ${Constants.sizes.mobile}px) {
|
|
|
|
width: 88%;
|
|
|
|
right: 24px;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_HEROIMG = css`
|
|
|
|
float: right;
|
|
|
|
margin: -80px 0 0 0;
|
|
|
|
width: 50vw;
|
|
|
|
|
|
|
|
@media (max-width: ${Constants.sizes.tablet}px) {
|
|
|
|
margin: 0;
|
2020-09-05 15:02:27 +03:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_IMG = css`
|
2020-09-07 02:24:36 +03:00
|
|
|
width: 100%;
|
2020-09-05 18:49:52 +03:00
|
|
|
border-radius: 4px;
|
2020-09-06 20:12:02 +03:00
|
|
|
display: block;
|
2020-09-05 15:02:27 +03:00
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_BUTTON_PRIMARY = css`
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 2px;
|
|
|
|
outline: 0;
|
|
|
|
border: 0;
|
|
|
|
min-height: 40px;
|
|
|
|
padding: 6px 24px 6px 24px;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 12px;
|
|
|
|
letter-spacing: 0.2px;
|
|
|
|
font-family: ${Constants.font.semiBold};
|
|
|
|
transition: 200ms ease all;
|
|
|
|
user-select: none;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: ${Constants.system.wall};
|
|
|
|
color: ${Constants.system.slate};
|
|
|
|
box-shadow: 0px 10px 50px 20px rgba(0, 0, 0, 0.1);
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-05 15:02:27 +03:00
|
|
|
:hover {
|
|
|
|
background-color: ${Constants.system.pitchBlack};
|
|
|
|
box-shadow: 0px 10px 90px 20px rgba(207, 206, 211, 0.3);
|
|
|
|
color: ${Constants.system.wall};
|
|
|
|
}
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-05 15:02:27 +03:00
|
|
|
:focus {
|
|
|
|
box-shadow: inset 0 0 5px 2px rgba(0, 0, 0, 0.3);
|
|
|
|
background-color: ${Constants.system.pitchBlack};
|
|
|
|
color: ${Constants.system.wall};
|
|
|
|
outline: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_SECTION_WRAPPER = css`
|
|
|
|
display: flex;
|
2020-09-07 02:24:36 +03:00
|
|
|
flex-direction: column;
|
|
|
|
padding: 88px;
|
|
|
|
width: 100vw;
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-05 15:02:27 +03:00
|
|
|
@media (max-width: ${Constants.sizes.mobile}px) {
|
2020-09-07 02:24:36 +03:00
|
|
|
padding: 64px 24px;
|
|
|
|
display: block;
|
2020-09-05 15:02:27 +03:00
|
|
|
}
|
|
|
|
`;
|
2020-09-05 18:49:52 +03:00
|
|
|
const STYLES_SECTION_CHILD_FULL = css`
|
2020-09-07 02:24:36 +03:00
|
|
|
display: flex;
|
2020-09-06 17:55:40 +03:00
|
|
|
width: 100%;
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-05 18:49:52 +03:00
|
|
|
@media (max-width: ${Constants.sizes.mobile}px) {
|
2020-09-07 02:24:36 +03:00
|
|
|
flex-direction: column;
|
2020-09-05 18:49:52 +03:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
const STYLES_SECTION_CHILD_SPLIT = css`
|
2020-09-05 15:02:27 +03:00
|
|
|
width: 50%;
|
2020-09-07 02:24:36 +03:00
|
|
|
padding: 16px;
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
@media (max-width: ${Constants.sizes.tablet}px) {
|
|
|
|
width: 100%;
|
2020-09-07 02:24:36 +03:00
|
|
|
padding: 16px 0;
|
2020-09-06 17:55:40 +03:00
|
|
|
}
|
2020-09-07 02:24:36 +03:00
|
|
|
`;
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-07 02:24:36 +03:00
|
|
|
const STYLES_CARD_GROUP = css`
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-top: 48px;
|
2020-09-05 18:49:52 +03:00
|
|
|
`;
|
2020-09-07 02:24:36 +03:00
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
const STYLES_CARD_NAME = css`
|
2020-09-07 02:24:36 +03:00
|
|
|
font-size: 1.25rem;
|
2020-09-06 20:08:58 +03:00
|
|
|
font-weight: 600;
|
|
|
|
letter-spacing: 0.002em;
|
|
|
|
text-align: center;
|
2020-09-06 17:55:40 +03:00
|
|
|
`;
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
const STYLES_CARD_GITHUB = css`
|
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 0.002em;
|
|
|
|
text-align: center;
|
|
|
|
`;
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
const STYLES_CARD_TEXT = css`
|
|
|
|
padding: 20px 5px;
|
|
|
|
color: ${Constants.system.pitchBlack};
|
|
|
|
`;
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-05 18:49:52 +03:00
|
|
|
const STYLES_CARD_WRAPPER = css`
|
2020-09-07 02:24:36 +03:00
|
|
|
width: calc(100% / 7 px);
|
2020-09-05 18:49:52 +03:00
|
|
|
transition: 200ms ease box-shadow;
|
2020-09-07 02:24:36 +03:00
|
|
|
padding: 16px 16px 0 0;
|
2020-09-06 20:08:58 +03:00
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
@media (max-width: ${Constants.sizes.tablet}px) {
|
2020-09-07 02:24:36 +03:00
|
|
|
width: 50%;
|
2020-09-05 15:02:27 +03:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-09-06 20:08:58 +03:00
|
|
|
export const getServerSideProps = async (context) => {
|
2020-09-05 15:02:27 +03:00
|
|
|
return {
|
2020-09-06 20:08:58 +03:00
|
|
|
props: { ...context.query },
|
2020-09-05 15:02:27 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
export default class CommunityPage extends React.Component {
|
2020-09-05 15:02:27 +03:00
|
|
|
render() {
|
|
|
|
const title = `Slate`;
|
|
|
|
const description =
|
2020-09-07 02:24:36 +03:00
|
|
|
"Slate is designed and built by a growing community of hackers, artists, and creatives on the web.";
|
2020-09-05 15:02:27 +03:00
|
|
|
const url = "https://slate.host/community";
|
|
|
|
|
|
|
|
return (
|
2020-09-07 02:24:36 +03:00
|
|
|
<WebsitePrototypeWrapper title={title} description={description} url={url}>
|
2020-09-05 15:02:27 +03:00
|
|
|
<WebsitePrototypeHeader />
|
|
|
|
<div css={STYLES_ROOT}>
|
2020-09-07 02:24:36 +03:00
|
|
|
<div css={STYLES_SECTION_HERO}>
|
|
|
|
<div css={STYLES_TEXT_BLOCK}>
|
|
|
|
<h1 css={STYLES_H1}>Community</h1>
|
|
|
|
<h2 css={STYLES_H2}>
|
|
|
|
Slate is designed and built by a growing community of hackers, artists, and creatives on the web.
|
|
|
|
</h2>
|
2020-09-05 15:02:27 +03:00
|
|
|
</div>
|
2020-09-07 02:24:36 +03:00
|
|
|
<div>
|
2020-09-05 15:02:27 +03:00
|
|
|
<img
|
2020-09-07 02:24:36 +03:00
|
|
|
css={STYLES_HEROIMG}
|
|
|
|
src="https://bafybeihg57cndacdyww5rl62qjbitltdxnj4xpuyeohzv6wos2fnsrknza.ipfs.slate.textile.io/"
|
|
|
|
alt="Slate hive tesseract"
|
2020-09-05 15:02:27 +03:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-09-06 17:55:40 +03:00
|
|
|
|
2020-09-05 15:02:27 +03:00
|
|
|
<div css={STYLES_SECTION_WRAPPER}>
|
2020-09-07 02:24:36 +03:00
|
|
|
<div css={STYLES_TEXT_BLOCK}>
|
|
|
|
<h2 css={STYLES_H2}>Core Team</h2>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_GROUP}>
|
2020-09-05 18:49:52 +03:00
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/jasonleyser">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 20:12:02 +03:00
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Jason Leyser"
|
|
|
|
src="https://bafkreie3dvujhpil4tgv2qx2lng5bfeif7reyybmgaftub6n4wxx4vnbly.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Jason Leyser</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@jasonleyser</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/jimmylee">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 20:12:02 +03:00
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Cake"
|
|
|
|
src="https://bafkreibfbxpiypzw4t7ubvjsxac7z3fdigvran5sayp2ibbuxhvzeivn4a.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Cake</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@jimmylee</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/martinalong">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 20:12:02 +03:00
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Martina Long"
|
|
|
|
src="https://bafkreif4mdwcxtykrcl2sfs6kcapg3d2tjyjjpcpmxnw3rqshbvr5ncjdi.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Martina Long</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@martinalong</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/harisbutt">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 17:55:40 +03:00
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Haris Butt"
|
|
|
|
src="https://bafkreigs2w7wsambbek5v5e4ykkoketj6r6ho6t3snm7jso7hodyzxbqfu.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Haris Butt</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@harisbutt</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/tarafanlin">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 20:12:02 +03:00
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Tara Lin"
|
|
|
|
src="https://bafkreibku3qhls572oo4hskrg4t32c2kcj4auujyxioz5i44pfbaatwqbe.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Tara Lin</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@tarafanlin</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/gndclouds">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 20:12:02 +03:00
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for William Felker"
|
|
|
|
src="https://bafybeic25subftulrkrxrw2ggpjblamofj3uemi2vaoqmlqzyzg2lfji5q.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>William Felker</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@gndclouds</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_SECTION_WRAPPER}>
|
2020-09-07 02:24:36 +03:00
|
|
|
<div css={STYLES_TEXT_BLOCK}>
|
|
|
|
<h2 css={STYLES_H2}>Contributors</h2>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_GROUP}>
|
2020-09-05 18:49:52 +03:00
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/pooja">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 20:12:02 +03:00
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Pooja Shah"
|
|
|
|
src="https://bafkreifqrmwuvlky7urkmkxyswksyjjpxvk62jwqgol35bfdfshgmcjmba.ipfs.slate.textile.io/"
|
|
|
|
/>
|
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Pooja Shah</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@pooja</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/whyrusleeping">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 20:12:02 +03:00
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Why"
|
|
|
|
src="https://bafkreiczwqnp5c6msa42pihhobagcbq6r5lkxuucmm3rmccb5lh46x3h7u.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
|
2020-09-06 17:55:40 +03:00
|
|
|
<div css={STYLES_CARD_TEXT}>
|
2020-09-06 20:12:02 +03:00
|
|
|
<p css={STYLES_CARD_NAME}>Why</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@whyrusleeping</p>
|
2020-09-06 17:55:40 +03:00
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/asutula">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 17:55:40 +03:00
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Aaron Sutula"
|
|
|
|
src="https://bafkreihl4pll4esqivugvam7d7j6oxbms4kz6c3azq77vf2ittwuon2dy4.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Aaron Sutula</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@asutula</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/jsign">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 17:55:40 +03:00
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Ignacio Hagopian"
|
|
|
|
src="https://bafkreieqpfn4bpqv3yrdr22surdngc3xyn574miybm3awjosfu6fcmbd6a.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Ignacio Hagopian</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@jsign</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/sanderpick">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 17:55:40 +03:00
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Sander Pick"
|
|
|
|
src="https://bafkreial7bum4chyd2rubvxkyufis4qczvb7xerrzis7eg6gyshbf7ltci.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Sander Pick</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@sanderpick</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/andrewxhill">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 17:55:40 +03:00
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Andrew Hill"
|
|
|
|
src="https://bafkreighz4m7bqjmt7cidgbbocbzp65f4liuzebwq6d64t27slhpe2cigm.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Andrew Hill</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@andrewxhill</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/akuokojnr">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 17:55:40 +03:00
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Akuoko Daniel Jnr"
|
|
|
|
src="https://bafkreibpqkmnm6vijyxlkbcjyayoo7b6tnf4tzelzsi4wk3z6o7enhpbrm.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Akuoko Daniel Jnr</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@akuokojnr</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/narative">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 17:55:40 +03:00
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Narative"
|
|
|
|
src="https://bafkreihgmyxi2rzp4gtkoxwkrajiwivrbttixfjrdfb6qz5fhpdaofrhoi.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Narative</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@narative</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_WRAPPER}>
|
|
|
|
<a href="https://github.com/narative">
|
2020-09-07 02:24:36 +03:00
|
|
|
<System.HoverTile height={300} width={200} style={{ padding: 8 }}>
|
2020-09-06 17:55:40 +03:00
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
css={STYLES_IMG}
|
|
|
|
alt="Github Profile Photo for Colin S. Mccaleb"
|
|
|
|
src="https://bafkreigxhplpm7adi3p77eljj3g66lcnnzig7m6ihpervxwqeti3tbqudi.ipfs.slate.textile.io"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_CARD_TEXT}>
|
|
|
|
<p css={STYLES_CARD_NAME}>Colin S. McCaleb</p>
|
|
|
|
<p css={STYLES_CARD_GITHUB}>@uonai</p>
|
|
|
|
</div>
|
|
|
|
</System.HoverTile>
|
2020-09-05 18:49:52 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_SECTION_WRAPPER}>
|
2020-09-07 02:24:36 +03:00
|
|
|
<div css={STYLES_TEXT_BLOCK}>
|
2020-09-05 18:49:52 +03:00
|
|
|
<h1 css={STYLES_H1}>Get involved</h1>
|
2020-09-07 02:24:36 +03:00
|
|
|
<h3 css={STYLES_H3}>
|
|
|
|
Slate is a fully open-source file sharing network designed for research and collaboration.
|
|
|
|
</h3>
|
2020-09-05 18:49:52 +03:00
|
|
|
</div>
|
2020-09-07 02:24:36 +03:00
|
|
|
<div css={STYLES_SECTION_CHILD_FULL}>
|
|
|
|
<div css={STYLES_SECTION_CHILD_SPLIT}>
|
|
|
|
<h3 css={STYLES_H3}>Contribute</h3>
|
|
|
|
<p css={STYLES_P}>Get involved with the project and contribute.</p>
|
|
|
|
<br />
|
|
|
|
<button css={STYLES_BUTTON_PRIMARY}>
|
|
|
|
<a>Github</a>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_SECTION_CHILD_SPLIT}>
|
|
|
|
<h3 css={STYLES_H3}>Contact</h3>
|
|
|
|
<p css={STYLES_P}>
|
|
|
|
{" "}
|
|
|
|
Reach out to any of the core contributors, reach us on Twitter, or join our Slack.
|
|
|
|
</p>
|
|
|
|
<br />
|
|
|
|
<button css={STYLES_BUTTON_PRIMARY}>
|
|
|
|
<a>Github</a>
|
|
|
|
</button>
|
|
|
|
</div>
|
2020-09-05 18:49:52 +03:00
|
|
|
</div>
|
2020-09-07 02:24:36 +03:00
|
|
|
<div css={STYLES_SECTION_CHILD_FULL}>
|
|
|
|
<div css={STYLES_SECTION_CHILD_SPLIT}>
|
|
|
|
<h3 css={STYLES_H3}>Integrate</h3>
|
|
|
|
<p css={STYLES_P}>Explore our API and SDK and build on top of Slate.</p>
|
|
|
|
<br />
|
|
|
|
<CodeBlock>npm install --save slate-react-system</CodeBlock>
|
|
|
|
</div>
|
2020-09-06 17:55:40 +03:00
|
|
|
<br />
|
2020-09-07 02:24:36 +03:00
|
|
|
<div css={STYLES_SECTION_CHILD_SPLIT}>
|
|
|
|
<h3 css={STYLES_H3}>Design System</h3>
|
|
|
|
<p css={STYLES_P}>Check out our open source design system for your projects.</p>
|
|
|
|
<br />
|
|
|
|
<CodeBlock>npm install --save slate-react-system</CodeBlock>
|
|
|
|
</div>
|
2020-09-05 15:02:27 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<WebsitePrototypeFooter />
|
|
|
|
</WebsitePrototypeWrapper>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|