diff --git a/components/footer/Footer.jsx b/components/footer/Footer.jsx index 724d5d51..0219f062 100644 --- a/components/footer/Footer.jsx +++ b/components/footer/Footer.jsx @@ -8,8 +8,10 @@ import * as ROUTES from '../../common/routes' import { getLiteral } from '../../common/i18n' import IconTwitter from '../../public/icons/twitter' +import IconBluesky from '../../public/icons/bluesky' import IconFacebook from '../../public/icons/facebook' import IconYouTube from '../../public/icons/youtube' +import IconTwitch from '../../public/icons/twitch' import IconLinkedIn from '../../public/icons/linkedin' import IconGitHub from '../../public/icons/github' @@ -49,6 +51,17 @@ const Footer = () => { + + + { + + + { + return ( + + + + + ) +} + +export default IconBluesky diff --git a/public/icons/twitch.js b/public/icons/twitch.js new file mode 100644 index 00000000..8417b46c --- /dev/null +++ b/public/icons/twitch.js @@ -0,0 +1,18 @@ +const IconTwitch = () => { + return ( + + + + + + + + + + + ) +} + +export default IconTwitch