-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.js
More file actions
32 lines (29 loc) · 854 Bytes
/
Home.js
File metadata and controls
32 lines (29 loc) · 854 Bytes
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
import React from 'react';
import "./CssComponents/Home.css";
import Logo from "../Common/reActive.png"
import {NavLink} from 'react-router-dom';
class Home extends React.Component {
render(){
return(
<section id="banner" className="Home">
<div className = "logoreactive">
<img src = {Logo} alt="reactive logo"/>
</div>
<div class="inner">
<header>
<h1 className="font-1">This is ReActive</h1>
<p className="font-2">Let your dream come true!<br /> By using the reactive app you can train and get the results you always wanted.</p>
</header>
<NavLink className="button big scrolly" to = {{pathname: `/ChooseTotalTime`}}>
<span></span>
<span></span>
<span></span>
<span></span>
Start Train
</NavLink>
</div>
</section>
)
}
}
export default Home;