-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLandingPage.js
34 lines (28 loc) · 880 Bytes
/
LandingPage.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
import React, { Component } from 'react';
import './LandingPage.css';
class LandingPage extends Component {
constructor(props){
super(props)
setTimeout(() => {
props.history.push('/sign-in')
}, 4000)
}
render() {
return (
<div className="main-wrapper">
<div className="animated-title">
<div className="text-top">
<div>
<span>The</span>
<span>Unwilted</span>
</div>
</div>
<div className="text-bottom">
<div>Kitchen</div>
</div>
</div>
</div>
);
}
}
export default LandingPage;