mshanker's picture
Upload 47 files
f07bf73
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;