2020-02-12 22:13:34 +00:00
|
|
|
import React, { Component } from "react";
|
|
|
|
import Fade from "react-reveal/Fade";
|
2020-02-12 17:23:10 +00:00
|
|
|
|
2020-02-12 22:13:34 +00:00
|
|
|
import "./HomeStay.scss";
|
|
|
|
import { SocialLink, CircleIcon, Mailing } from "../";
|
|
|
|
import { SmallOrb, Pyramid } from "../../svg";
|
2020-02-12 17:23:10 +00:00
|
|
|
|
|
|
|
export default class HomeStay extends Component {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="home-stay">
|
|
|
|
<header className="home-stay-header">
|
2020-02-12 22:13:34 +00:00
|
|
|
<Fade duration={700} distance="40px" bottom>
|
2020-02-12 17:23:10 +00:00
|
|
|
<div className="home-stay-divider">
|
|
|
|
<CircleIcon>
|
|
|
|
<Pyramid />
|
|
|
|
</CircleIcon>
|
|
|
|
<SmallOrb />
|
|
|
|
<div className="divider" />
|
|
|
|
<div className="small-divider" />
|
|
|
|
</div>
|
|
|
|
</Fade>
|
2020-02-12 22:13:34 +00:00
|
|
|
<Fade duration={700} distance="40px" bottom>
|
2020-02-12 17:23:10 +00:00
|
|
|
<h2>
|
|
|
|
Stay up to date with
|
|
|
|
<br />
|
|
|
|
<strong>Skynet updates</strong>
|
|
|
|
</h2>
|
|
|
|
</Fade>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div className="home-stay-flex">
|
|
|
|
<div className="home-stay-left">
|
2020-02-12 22:13:34 +00:00
|
|
|
<Fade duration={700} distance="40px" bottom>
|
2020-02-12 17:23:10 +00:00
|
|
|
<Mailing id="check1" />
|
|
|
|
</Fade>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<ul className="home-stay-right">
|
2020-02-12 22:13:34 +00:00
|
|
|
<Fade duration={700} distance="40px" bottom>
|
2020-02-12 17:23:10 +00:00
|
|
|
<li>
|
|
|
|
<SocialLink
|
|
|
|
icon="github"
|
|
|
|
url="https://github.com/NebulousLabs/skynet-webportal"
|
|
|
|
greenText="View project on Github"
|
2020-02-13 23:03:20 +00:00
|
|
|
title={<strong>/Skynet-Webportal</strong>}
|
2020-02-12 17:23:10 +00:00
|
|
|
/>
|
|
|
|
</li>
|
|
|
|
</Fade>
|
2020-02-12 22:13:34 +00:00
|
|
|
<Fade duration={700} distance="40px" bottom>
|
2020-02-12 17:23:10 +00:00
|
|
|
<li>
|
|
|
|
<SocialLink
|
|
|
|
icon="discord"
|
|
|
|
url="https://discord.gg/sia"
|
|
|
|
greenText="View project on Github"
|
|
|
|
title={<strong>/Sia</strong>}
|
|
|
|
/>
|
|
|
|
</li>
|
|
|
|
</Fade>
|
2020-02-12 22:13:34 +00:00
|
|
|
<Fade duration={700} distance="40px" bottom>
|
2020-02-12 17:23:10 +00:00
|
|
|
<li>
|
|
|
|
<SocialLink
|
|
|
|
icon="twitter"
|
|
|
|
url="https://twitter.com/SiaTechHQ?s=20"
|
|
|
|
greenText="View project on Github"
|
|
|
|
title={<strong>@SiaTechHQ</strong>}
|
|
|
|
/>
|
|
|
|
</li>
|
|
|
|
</Fade>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-12 22:13:34 +00:00
|
|
|
);
|
2020-02-12 17:23:10 +00:00
|
|
|
}
|
|
|
|
}
|