-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.jsx
42 lines (39 loc) · 1.96 KB
/
footer.jsx
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
import React from 'react';
class Footer extends React.Component {
render() {
return (
<div>
<section>
<div style={{ backgroundColor: "#333333", padding: '40px' }}>
<div className="row">
<div className="col-md-4 our_topics">
<h3>Our Topics</h3>
<ul class="topics">
<li><a href="">NodeJs</a></li>
<li><a href="">ReactJs</a></li>
<li><a href="">MongoDB</a></li>
<li><a href="">Java</a></li>
<li><a href="">NodeJs Interviews</a></li>
<li><a href="">MongoDB Interviews</a></li>
</ul>
</div>
<div className="col-md-8 contact_us">
<h3>Contact Us</h3>
<p>
<span className="glyphicon glyphicon-map-marker"> </span>
2035, Rajiv Nagar, Sector 13, Gurugram, Haryana 122022, India</p>
<p><span className="glyphicon glyphicon-envelope"> </span>
rajeshkumar11cse@gmail.com</p>
<p><span className="glyphicon glyphicon-phone-alt"> </span>
+91 90 7126 2362</p>
</div>
</div>
<div className="col-md-12 hr_line"></div>
<center style={{ fontSize: "15px", color: "#fff" }}>Copyright © 2017-2017 nodetpoint.com. All rights reserved.</center>
</div>
</section>
</div>
)
}
}
export default Footer;