-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.jsx
62 lines (56 loc) · 1.65 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import React from "react";
import { ReactDOM } from "react";
function Footer() {
return (
<footer className="text-center footer text-center">
<div className="container">
{/* Logo Start */}
<div className="col-md-4">
<h4>
R. W. <span className="Analyst">Smith</span>
</h4>
<p className="copy-right">
Copyright © 2008-2019 R. Smith Technology. All Rights Reserved.
</p>
</div>
{/* Logo end */}
{/* Solutions Start */}
<div className="footer-column">
<h5>Solutions</h5>
<ul className="list-style">
<li>Staff bruh</li>
<li>Equal Opportunity</li>
<li>R&D / Market Intelligence</li>
<li>M&A Opportunity and Due Diligence</li>
<li>Litigation Risk Assessment and Strategy</li>
<li>Patent Prosecution</li>
</ul>
</div>
{/* Solutions end */}
{/* Quick links Start */}
<div className="footer-column">
<h5>Quick links</h5>
<ul className="list-style">
<li>Empower</li>
<li>Insight</li>
<li>Corporation</li>
</ul>
</div>
{/* Quick links end */}
{/* Other Start */}
<div className="footer-column">
<h5>Other</h5>
<ul className="list-style">
<li>Privacy Policy</li>
<li>Terms of Use</li>
<li>Features</li>
<li>Success Stories</li>
<li>Contact Us</li>
</ul>
</div>
{/* Other end */}
</div>
</footer>
);
}
export default Footer;