diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx index 2eed8a5..e3a96ac 100644 --- a/src/components/Footer.jsx +++ b/src/components/Footer.jsx @@ -8,6 +8,8 @@ import { GithubIcon } from './icons/GithubIcon' import { DiscordIcon } from './icons/DiscordIcon' import { LinkedinIcon } from './icons/LinkedinIcon' import { TwitterIcon } from './icons/TwitterIcon' +import EmailIcon from './icons/EmailIcon' + const socialMediaLinks = [ { @@ -30,6 +32,10 @@ const socialMediaLinks = [ Icon: TwitterIcon, Link: 'https://twitter.com/gofr_dev', }, + { + Icon: EmailIcon, + Link: 'mailto:connect@gofr.dev', + }, ] const footerLinks = [ diff --git a/src/components/icons/EmailIcon.jsx b/src/components/icons/EmailIcon.jsx new file mode 100644 index 0000000..c906c69 --- /dev/null +++ b/src/components/icons/EmailIcon.jsx @@ -0,0 +1,15 @@ +import * as React from "react"; + +const EmailIcon = (props) => ( + + + + +); + +export default EmailIcon;