-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathintroduction.js
34 lines (31 loc) · 1.04 KB
/
introduction.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 { Link } from 'react-router-dom';
import ReactDOM from 'react-dom';
import './introduction.css';
export default class Intro extends Component {
render() {
return (
<div>
<header>
<ul class="topnav">
<li><a class="active" href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="display.html">Browse Items</a></li>
<li class="right"><a href="login.html">LOGIN</a></li>
</ul>
</header>
<div class="img">
<div id="bottom-area">
<h1> FARMEX - BUY AND SELL USING CRYPTOCURRENCY</h1>
<br/><h2>LOG IN TO BUY DIRECTLY FROM FARMERS USING CRYPTOCURRENCY! </h2><br/>
<div class="img2">
<img src="images/fruitbasket.jpg"/>
</div >
<div class="button"> <a href="login.html">LOGIN</a> </div>
</div>
</div>
</div>
)
}
}
ReactDOM.render(<Intro />, document.getElementById('root'));