-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathFooter.js
52 lines (47 loc) · 1.83 KB
/
Footer.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { Link } from "react-router-dom";
import "../styles/footer.css";
const Footer = () => {
return (
<footer class="footer">
<div class="footer-left col-md-4 col-sm-6">
<p class="about">
<h1> About the company</h1> Ut congue augue non tellus bibendum, in varius tellus condimentum. In scelerisque nibh tortor, sed rhoncus odio condimentum in. Sed sed est ut sapien ultrices eleifend. Integer tellus est, vehicula eu lectus tincidunt,
ultricies feugiat leo. Suspendisse tellus elit, pharetra in hendrerit ut, aliquam quis augue. Nam ut nibh mollis, tristique ante sed, viverra massa.
</p>
<div class="icons">
<a href="https://www.facebook.com/"><i class="icon-facebook"></i></a>
<a href="https://www.twitter.com/"><i class="icon-twitter"></i></a>
<a href="https://www.linkedin.com/"><i class="icon-linkedin"></i></a>
<a href="https://www.github.com/"><i class="icon-github"></i></a>
<a href="https://www.instagram.com/"><i class="icon-instagram"></i></a>
</div>
</div>
<div class="footer-center col-md-4 col-sm-6">
<div>
<i class="icon-map-marker"></i>
<p><span> Street name and number</span> City, Country</p>
</div>
<div>
<i class="icon-phone"></i>
<p> (+00) 0000 000 000</p>
</div>
<div>
<i class="icon-envelope"></i>
<p> [email protected]</p>
</div>
</div>
<div class="footer-right col-md-4 col-sm-6">
<p class="menu">
<Link to="/"> Home</Link> <br></br>
<Link to="/events"> Events</Link> <br></br>
<Link to="/Hackathons"> Hackathons</Link> <br></br>
<Link to="/"> Open Source</Link> <br></br>
<Link to="/"> Collaborations</Link> <br></br>
<Link to="/"> Terms and Conditions</Link>
</p>
<p class="name"> Codeflow © 2021</p>
</div>
</footer>
);
};
export default Footer;