File size: 2,075 Bytes
f5071ca |
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 63 64 65 66 67 68 69 70 71 72 |
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">
<h3>Designed and Developed by Soumyajit Behera</h3>
</Col>
<Col md="4" className="footer-copywright">
<h3>Copyright © {year} SB</h3>
</Col>
<Col md="4" className="footer-body">
<ul className="footer-icons">
<li className="social-icons">
<a
href="https://github.com/soumyajit4419"
style={{ color: "white" }}
target="_blank"
rel="noopener noreferrer"
>
<AiFillGithub />
</a>
</li>
<li className="social-icons">
<a
href="https://twitter.com/Soumyajit4419"
style={{ color: "white" }}
target="_blank"
rel="noopener noreferrer"
>
<AiOutlineTwitter />
</a>
</li>
<li className="social-icons">
<a
href="https://www.linkedin.com/in/soumyajit4419/"
style={{ color: "white" }}
target="_blank"
rel="noopener noreferrer"
>
<FaLinkedinIn />
</a>
</li>
<li className="social-icons">
<a
href="https://www.instagram.com/soumyajit4419"
style={{ color: "white" }}
target="_blank"
rel="noopener noreferrer"
>
<AiFillInstagram />
</a>
</li>
</ul>
</Col>
</Row>
</Container>
);
}
export default Footer;
|