-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.js
69 lines (66 loc) · 1.92 KB
/
Home.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import React from "react";
import { Link } from "react-router-dom";
const Home = ({ loggedIn }) => (
<React.Fragment>
<div className="wrap">
<div className="homeBackground">
<div>
<div id="black" />
<div className="animated fadeInLeftBig fast">
<div className="container">
<div className="col-md-12">
<h1
style={{
paddingTop: "230px",
paddingLeft: "55px"
}}
>
<img
src="favicon.ico"
className="logo"
alt="logo"
style={{
margin: "5px px 5px 5px"
}}
/>{" "}
<span className="homeTitle">seQQure</span>
<br className="visible-lg " />
</h1>
<hr
style={{
width: "25%",
textAlign: "left",
margin: "30px 0",
border: "2.5px solid #fff",
paddingLeft: "80px"
}}
/>
</div>
<div className="col-md-8">
<h2
className="subtitle"
style={{
paddingLeft: "55px"
}}
>
<span className="homeh2"> Securing the Escrow Process!</span>
</h2>
</div>
</div>
{!loggedIn && (
<Link
to="/Login"
role="button"
className="loginButtonHome pull-right
animated fadeInRightBig fast"
>
<span> Login</span>
</Link>
)}
</div>
</div>
</div>
</div>
</React.Fragment>
);
export default Home;