18 lines
513 B
JavaScript
18 lines
513 B
JavaScript
import React from "react";
|
|
import "./Footer.css";
|
|
const Footer = () => {
|
|
return (
|
|
<footer>
|
|
<section id="footer">
|
|
<div class="container-fluid">
|
|
<i class="fab fa-twitter social-icon"></i>
|
|
<i class="fab fa-facebook social-icon"></i>
|
|
<i class="fab fa-instagram social-icon"></i>
|
|
<i class="fas fa-envelope social-icon"></i>
|
|
<p class="">© Copyright SEG3125 - Group 3</p>
|
|
</div>
|
|
</section>
|
|
</footer>
|
|
);
|
|
};
|
|
export default Footer;
|