This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/webapp/src/components/HomeTop/HomeTop.js

27 lines
794 B
JavaScript
Raw Normal View History

2020-02-12 22:13:34 +00:00
import React from "react";
import Reveal from "react-reveal/Reveal";
2020-02-18 16:25:03 +00:00
import logo from "../../images/logo.svg";
2020-02-12 22:13:34 +00:00
import "./HomeTop.scss";
import { Skynet, Deco1, Deco2 } from "../../svg";
2020-02-12 17:23:10 +00:00
export default function HomeTop() {
return (
<Reveal effect="active">
<div className="home-top">
2020-02-18 16:25:03 +00:00
<img src={logo} alt="Skynet logo" className="logo" />
<Skynet className="wordmark" />
2020-02-12 17:23:10 +00:00
2020-02-18 06:01:36 +00:00
<h1 className="fadeInUp delay2">Build a Free Internet.</h1>
2020-02-12 17:23:10 +00:00
2020-02-12 22:13:34 +00:00
<p className="fadeInUp delay3">
2020-02-18 16:25:03 +00:00
The decentralized CDN and file sharing platform for devs. Skynet is the storage foundation for a Free
Internet!
2020-02-12 22:13:34 +00:00
</p>
2020-02-12 17:23:10 +00:00
2020-02-12 22:13:34 +00:00
<Deco1 className="deco-1 fadeInUp delay6" />
<Deco2 className="deco-2 fadeInUp delay6" />
2020-02-12 17:23:10 +00:00
</div>
</Reveal>
2020-02-12 22:13:34 +00:00
);
2020-02-12 17:23:10 +00:00
}