Merge branch '@gndcloud/marketing-site' of github.com:filecoin-project/slate into @gndcloud/marketing-site

This commit is contained in:
tarafanlin 2020-08-14 09:31:13 -07:00
commit ab5c8cc5fa
8 changed files with 207 additions and 64 deletions

View File

@ -53,6 +53,7 @@
"dotenv": "^8.2.0", "dotenv": "^8.2.0",
"express": "^4.17.1", "express": "^4.17.1",
"formidable": "^1.2.2", "formidable": "^1.2.2",
"framer-motion": "^2.4.2",
"fs-extra": "^9.0.1", "fs-extra": "^9.0.1",
"isomorphic-fetch": "^2.2.1", "isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.5.1", "jsonwebtoken": "^8.5.1",

View File

@ -2,8 +2,8 @@ import * as React from "react";
import * as Constants from "~/common/constants"; import * as Constants from "~/common/constants";
import * as Actions from "~/common/actions"; import * as Actions from "~/common/actions";
import * as System from "~/components/system"; import * as System from "~/components/system";
import { motion, useViewportScroll, useTransform } from "framer-motion";
import { css } from "@emotion/react"; import { css, keyframes } from "@emotion/react";
import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper"; import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper";
import WebsitePrototypeHeader from "~/components/core/NewWebsitePrototypeHeader"; import WebsitePrototypeHeader from "~/components/core/NewWebsitePrototypeHeader";
@ -25,7 +25,7 @@ text-align: center;
`; `;
const STYLES_HERO_TEXT = css` const STYLES_HERO_TEXT = css`
text-align: center; text-align: center;
color: ${Constants.system.foreground}; color: ${Constants.system.black};
width: 80vw; width: 80vw;
margin: auto; margin: auto;
`; `;
@ -103,45 +103,31 @@ const STYLES_SECTION_FOREGROUND = css`
const STYLES_SECTION_FRONT = css` const STYLES_SECTION_FRONT = css`
padding: 88px 24px 24px 24px; padding: 88px 24px 24px 24px;
margin: 0px 0px 0px 0px; margin: 0px;
position: relative; position: relative;
z-index : 2; z-index : 2;
}
`;
// const STYLES_VIEWS_TEXT = css` const STYLES_VIEWS_TEXT = css`
// align-items: center; display: inline-flex;
// height: 80%; align-items: center;
// ul { font-size: 1.953rem;
// list-style-type: none; color: ${Constants.system.black};
// position: relative; text-decoration: none;
// padding-top: 20vh; margin: 30vh 0px;
// } }
// a { `;
// font-size: 1.953rem;
// color: ${Constants.system.black}; const STYLES_VIEWS_IMAGES = css`
// text-decoration: none; display: inline-flex;
// } position: absolute;
// a:hover{ img{
// font-size: 1.953rem; max-width: 500px;
// color: ${Constants.system.black}; height: auto;
// text-decoration-style: wavy; }
// font-weight: bold; }
// } `;
// img {
// display: none;
// height: 301px;
// position: absolute;
// right: 0;
// top: 0;
// width: 300px;
// }
// a:hover + img,
// img:hover {
// width: 65%;
// height: auto;
// display: block;
// }
// }
// `;
const STYLES_SECTION_BACK = css` const STYLES_SECTION_BACK = css`
margin: 0px 0px 0px 0px; margin: 0px 0px 0px 0px;
@ -169,6 +155,75 @@ const STYLES_MEDIA = css`
background-repeat: no-repeat; background-repeat: no-repeat;
`; `;
const STYLES_SIMPLE_FLOW_CONTAINER = css `
display: flex;
flex-direction: row;
width: 100vw;
justify-content: space-around;
padding-top: 20vh;
align-items: center;
`;
const STYLES_ARROW_CONTAINER = css `
width: 200px;
`;
const STYLES_SECTION_TEXT = css`
display: block;
max-width: 980px;
`;
const STYLES_SECTION_SVG_CONTAINER = css`
display: flex;
justify-content: center;
`;
const STYLES_STROKE_KF = keyframes`
from { stroke-dashoffset: 1; }
to { stroke-dashoffset: 0;}
`;
const STYLES_SVG_AN = css`
animation: ${STYLES_STROKE_KF} 5s ease-in-out infinite alternate;
`;
const STYLES_CONTR_CONTAINER = css `
display: flex;
`;
const STYLES_CONTR_LIST = css `
display: flex;
justify-content: space-around;
width: 100vw;
list-style: none;
`;
const STYLES_CONTR_LI0 = css `
font-size: 1.953rem;
color: ${Constants.system.black};
text-decoration: none;
padding-bottom: 1.5rem;
`;
const STYLES_CONTR_LI1 = css `
font-size: 1.953rem;
color: ${Constants.system.black};
text-decoration: none;
opacity: .76;
padding-bottom: 1.5rem;
`;
const STYLES_CONTR_LI2 = css `
font-size: 1.953rem;
color: ${Constants.system.black};
text-decoration: none;
opacity: .56;
padding-bottom: 1.5rem;
`;
const STYLES_CONTR_LI3 = css `
font-size: 1.953rem;
color: ${Constants.system.black};
text-decoration: none;
opacity: .26;
padding-bottom: 1.5rem;
`;
const STYLES_MEDIA_LEFT = css` const STYLES_MEDIA_LEFT = css`
position: absolute; position: absolute;
right: 16%; right: 16%;
@ -183,37 +238,93 @@ const fadeImages = [
"/static/media/url.jpg", "/static/media/url.jpg",
]; ];
const viewsImages = [
"/static/media/slate-views-moodboard.png",
"/static/media/slate-views-canvas.png",
"/static/media/slate-views-presentation.png",
"/static/media/slate-views-blog.png",
];
export const getServerSideProps = async (context) => { export const getServerSideProps = async (context) => {
return { return {
props: { ...context.query }, props: { ...context.query },
}; };
}; };
export const MyComponent = () => (
<motion.div
animate={{ rotate: 360 }}
transition={{ duration: 2 }}
/>
)
export const MyMotion = () => {
const { scrollYProgress } = useViewportScroll()
return <motion.div style={{ scaleX: scrollYProgress }} />
}
export default class IndexPage extends React.Component { export default class IndexPage extends React.Component {
async componentDidMount() { async componentDidMount() {
const response = await Actions.health(); const response = await Actions.health();
console.log("HEALTH_CHECK", response); console.log("HEALTH_CHECK", response);
} }
render() { render() {
const title = `Slate`; const title = `Slate`;
const description = "The place for all of your assets. Powered by Textile and Filecoin."; const description = "The place for all of your assets. Powered by Textile and Filecoin.";
const url = "https://slate.host"; const url = "https://slate.host";
return ( return (
<WebsitePrototypeWrapper title={title} description={description} url={url}> <WebsitePrototypeWrapper title={title} description={description} url={url}>
<div css={STYLES_ROOT}> <div css={STYLES_ROOT}>
<WebsitePrototypeHeader /> <WebsitePrototypeHeader />
<section css={STYLES_HERO_SECTION}> <section css={STYLES_HERO_SECTION}>
<div css={STYLES_HERO_TEXT}> <div css={STYLES_HERO_TEXT}>
<System.H1>Slate is the gateway to Filecoin.</System.H1>
<System.H1>Slate is the gateway to Filecoin.</System.H1>
<br/> <br/>
<System.H2>By creating a safe, open, and moddable storage system that is easy to use, we create paths to a new network of designed around trust.</System.H2> <System.H2>By creating a safe, open, and moddable storage system that is easy to use, we create paths to a new network of designed around trust.</System.H2>
</div> </div>
</section> </section>
<section css={STYLES_SECTION_WHITE}> <section css={STYLES_SECTION_WHITE}>
<h1>Simple, intuitive</h1> <h1>Simple, intuitive</h1>
<h2>Words about things</h2> <h2>Break way from abstract visualizations of your files.<br/>Securely organize your data in a relatable way</h2>
<div css={STYLES_SIMPLE_FLOW_CONTAINER}>
<div>{/*<ButtonPrimary>Upload File</ButtonPrimary> Figure out hoiw to pull in correctly*/}<button>Upload File</button></div>
<div css={STYLES_ARROW_CONTAINER}>
<svg viewBox="0 0 350 100">
<defs>
<marker id="arrowhead" markerWidth="10" markerHeight="7"
refX="0" refY="1.5" orient="auto" fill="#1b1f23">
<polygon points="0 0, 5 1.5, 0 3" />
</marker>
</defs>
<line x1="5" y1="50" x2="250" y2="50" stroke="#1b1f23"
stroke-width="8" marker-end="url(#arrowhead)" />
</svg>
</div>
<div><p>Slate securely stores your file</p></div>
<div css={STYLES_ARROW_CONTAINER}>
<svg viewBox="0 0 350 100">
<defs>
<marker id="arrowhead" markerWidth="10" markerHeight="7"
refX="0" refY="1.5" orient="auto" fill="#1b1f23">
<polygon points="0 0, 5 1.5, 0 3" />
</marker>
</defs>
<line x1="5" y1="50" x2="250" y2="50" stroke="#1b1f23"
stroke-width="8" marker-end="url(#arrowhead)" />
</svg>
</div>
<div><p>Share!</p></div>
</div>
</section> </section>
<section css={STYLES_SECTION_FOREGROUND}> <section css={STYLES_SECTION_FOREGROUND}>
@ -235,19 +346,19 @@ export default class IndexPage extends React.Component {
pauseOnHover={false} pauseOnHover={false}
> >
<div className="each-fade" css={STYLES_MEDIA}> <div className="each-fade" css={STYLES_MEDIA}>
<img src={fadeImages[0]} /> <img src={fadeImages[0]} />
</div> </div>
<div className="each-fade" css={STYLES_MEDIA}> <div className="each-fade" css={STYLES_MEDIA}>
<img src={fadeImages[1]}/> <img src={fadeImages[1]}/>
</div> </div>
<div className="each-fade" css={STYLES_MEDIA}> <div className="each-fade" css={STYLES_MEDIA}>
<img src={fadeImages[2]}/> <img src={fadeImages[2]}/>
</div> </div>
<div className="each-fade" css={STYLES_MEDIA}> <div className="each-fade" css={STYLES_MEDIA}>
<img src={fadeImages[3]}/> <img src={fadeImages[3]}/>
</div> </div>
<div className="each-fade" css={STYLES_MEDIA}> <div className="each-fade" css={STYLES_MEDIA}>
<img src={fadeImages[4]}/> <img src={fadeImages[4]}/>
</div> </div>
</Fade> </Fade>
</div> </div>
@ -273,33 +384,64 @@ export default class IndexPage extends React.Component {
<section css={STYLES_SECTION_FOREGROUND}> <section css={STYLES_SECTION_FOREGROUND}>
<h1>Making a Slate</h1> <h1>Making a Slate</h1>
<h2>Slates give you rich previews and different layouts to view your files.</h2> <h2>Slates give you rich previews and different layouts to view your files.</h2>
{/* <div css={STYLES_VIEWS_TEXT}> <div css={STYLES_VIEWS_TEXT} >
<ul> <TextLoop interval={3200}>
<li> <span>Create moodboards</span>
<a href="#">Create moodboards</a> <span>Organize research</span>
<img src="/static/slate-views-moodboard.png" alt=""/> <span>Share presentations</span>
</li> <span>Create a Blog</span>
<li> <span>URL</span>
<a href="#">Organize research</a> </TextLoop>
<img src="/static/slate-views-canvas.png" alt=""/> </div>
</li> <div css={STYLES_VIEWS_IMAGES}>
<li> <Fade
<a href="#">Share presentations</a> arrows={false}
<img src="/static/slate-views-presentation.png" alt=""/> duration={2400}
</li> transitionDuration={800}
pauseOnHover={true}
</ul> >
</div> */} <div className="each-fade" >
<img src={viewsImages[0]} />
</div>
<div className="each-fade" >
<img src={viewsImages[1]} />
</div>
<div className="each-fade" >
<img src={viewsImages[2]}/>
</div>
<div className="each-fade" >
<img src={viewsImages[3]}/>
</div>
</Fade>
</div>
</section> </section>
<section css={STYLES_SECTION_WHITE}> <section css={STYLES_SECTION_WHITE}>
<h1>Share with</h1> <h1>Share with</h1>
<h2>Words about things</h2> <h2>Words about things</h2>
<div css={STYLES_VIEWS_IMAGES}>
<img src="/static/media/slate-share.gif" alt="" />
</div>
</section> </section>
<section css={STYLES_SECTION_FOREGROUND}> <section css={STYLES_SECTION_FOREGROUND}>
<h1>Open Source</h1> <h1>Open Source</h1>
<h2>Words about things</h2> <h2 css={STYLES_SECTION_TEXT}>"Collaboration makes better software". <br/><br/>Pair that with Filecoin's transparent marketplace as Slates's foundation. And you got yourself real nice power couple right there.</h2>
<div css={STYLES_SECTION_SVG_CONTAINER}>
<svg viewBox="-15 125 750 750" width="800" height="800">
<path css={STYLES_SVG_AN} stroke="#b2b2b2" fill="none" strokeWidth="3" strokeDasharray="1 1" pathLength="1"
d="m 398.40437,595.27818 c 40.32082,-14.97419 61.36968,-43.81349 61.36968,-93.44762 0,-49.63413 -41.82527,-93.37059 -94.0866,-93.45552 -55.14896,-0.0896 -96.75182,43.64 -96.0866,93.45552 0.66523,49.81551 24.42164,82.95509 62.44642,94.93898 L 264.68924,762.47972 C 174.536,739.14196 82.84508,632.78774 82.84508,501.83056 c 0,-155.10914 124.63284,-280.84993 280.84238,-280.84993 156.20954,0 282.84239,125.74079 282.84239,280.84993 0,132.99462 -90.82075,237.8649 -182.89748,261.11527 z"
/>
</svg>
</div>
<div css={STYLES_CONTR_CONTAINER}>
<ul css={STYLES_CONTR_LIST}>
<li css={STYLES_CONTR_LI0}>Jimmylee<br/>github.com/jimmylee</li>
<li css={STYLES_CONTR_LI1}>Martinalong<br/>github.com/martinalong</li>
<li css={STYLES_CONTR_LI2}>William Felker<br/>github.com/gndclouds</li>
<li css={STYLES_CONTR_LI3}>Uonai<br/>github.com/uonai</li>
</ul>
</div>
</section> </section>
<WebsitePrototypeFooter /> <WebsitePrototypeFooter />
</div> </div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 MiB

View File

Before

Width:  |  Height:  |  Size: 144 KiB

After

Width:  |  Height:  |  Size: 144 KiB

View File

Before

Width:  |  Height:  |  Size: 145 KiB

After

Width:  |  Height:  |  Size: 145 KiB

View File

Before

Width:  |  Height:  |  Size: 146 KiB

After

Width:  |  Height:  |  Size: 146 KiB

View File

Before

Width:  |  Height:  |  Size: 440 KiB

After

Width:  |  Height:  |  Size: 440 KiB

View File

Before

Width:  |  Height:  |  Size: 196 KiB

After

Width:  |  Height:  |  Size: 196 KiB