File size: 1,360 Bytes
f07bf73 |
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 |
import React from "react";
import { Container, Row, Col } from "react-bootstrap";
import {
AiFillGithub,
AiOutlineTwitter,
AiFillInstagram,
} from "react-icons/ai";
import { FaLinkedinIn } from "react-icons/fa";
function Footer() {
let date = new Date();
let year = date.getFullYear();
return (
<Container fluid className="footer">
<Row>
<Col md="4" className="footer-copywright">
</Col>
<Col md="4" className="footer-copywright">
<h3>Copyright © {year} MS</h3>
</Col>
<Col md="4" className="footer-body">
<ul className="footer-icons">
<li className="social-icons">
<a
href="https://github.com/manishshanker"
style={{ color: "white" }}
target="_blank"
rel="noopener noreferrer"
>
<AiFillGithub />
</a>
</li>
<li className="social-icons">
<a
href="https://www.linkedin.com/in/manishshanker/"
style={{ color: "white" }}
target="_blank"
rel="noopener noreferrer"
>
<FaLinkedinIn />
</a>
</li>
</ul>
</Col>
</Row>
</Container>
);
}
export default Footer;
|