16 lines
536 B
JavaScript
16 lines
536 B
JavaScript
/* ----- Project Imports ----- */
|
|
import "@/styles/footer.css"
|
|
|
|
|
|
function Footer() {
|
|
return (
|
|
<footer className="projectFooter">
|
|
<a href="https://www.linkedin.com/in/paul-andrew-hughes/" target="_blank" ><img className="footerSocialLinksImg" src="/linkedin.webp" alt="linkedin" /></a>
|
|
<p className="footerText">© paul hughes</p>
|
|
<a href="https://github.com/II-Paulus-II" target="_blank" ><img className="footerSocialLinksImg" src="/github.webp" alt="github" /></a>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|