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/sia-skynet/src/components/HomeTop/HomeTop.js

26 lines
687 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-12 17:23:10 +00:00
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">
<Skynet className="logo" />
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 06:01:36 +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
}