2020-02-12 22:13:34 +00:00
|
|
|
import React 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 "./HomeBuilt.scss";
|
|
|
|
import { CircleIcon, CodeExamples } from "../";
|
|
|
|
import { Cylinder, SmallOrb } from "../../svg";
|
2020-02-12 17:23:10 +00:00
|
|
|
|
|
|
|
export default function HomeBuilt() {
|
|
|
|
return (
|
|
|
|
<div className="home-built">
|
|
|
|
<header className="home-built-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-built-divider">
|
|
|
|
<div className="small-divider" />
|
|
|
|
<div className="divider" />
|
|
|
|
<SmallOrb className="small-orb" />
|
|
|
|
<CircleIcon>
|
|
|
|
<Cylinder />
|
|
|
|
</CircleIcon>
|
|
|
|
<SmallOrb className="small-orb" />
|
|
|
|
<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>
|
|
|
|
Infrastructure built for
|
|
|
|
<br />
|
|
|
|
<strong>application developers</strong>
|
|
|
|
</h2>
|
|
|
|
</Fade>
|
|
|
|
</header>
|
|
|
|
|
2020-02-12 22:13:34 +00:00
|
|
|
<Fade duration={700} distance="40px" bottom>
|
2020-02-18 10:31:32 +00:00
|
|
|
<div className="code-examples">
|
|
|
|
<h3 className="code-examples-title">Uploading</h3>
|
|
|
|
<CodeExamples type="upload"/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="code-examples">
|
|
|
|
<h3 className="code-examples-title">Downloading</h3>
|
|
|
|
<CodeExamples type="download"/>
|
|
|
|
</div>
|
2020-02-12 17:23:10 +00:00
|
|
|
</Fade>
|
|
|
|
</div>
|
2020-02-12 22:13:34 +00:00
|
|
|
);
|
2020-02-12 17:23:10 +00:00
|
|
|
}
|