diff --git a/client/src/components/App/Footer/index.js b/client/src/components/App/Footer/index.js
index 542a1e4..d3e1d07 100644
--- a/client/src/components/App/Footer/index.js
+++ b/client/src/components/App/Footer/index.js
@@ -8,6 +8,7 @@ import {
SlackIcon,
GitHubIcon,
InstagramIcon,
+ TwitchIcon,
QuestionsIcon,
MapIcon,
UsersIcon,
@@ -77,6 +78,12 @@ const Footer = () => (
Seguinos en Instagram
+
+
+
+ Seguinos en Twitch
+
+
diff --git a/client/src/components/shared/Icons/Twitch.js b/client/src/components/shared/Icons/Twitch.js
new file mode 100644
index 0000000..a18538f
--- /dev/null
+++ b/client/src/components/shared/Icons/Twitch.js
@@ -0,0 +1,10 @@
+import React from 'react'
+
+const TwitchIcon = props => (
+
+)
+
+export default TwitchIcon
diff --git a/client/src/components/shared/Icons/index.js b/client/src/components/shared/Icons/index.js
index 1f92cae..d127304 100644
--- a/client/src/components/shared/Icons/index.js
+++ b/client/src/components/shared/Icons/index.js
@@ -4,6 +4,7 @@ import MeetupIcon from './Meetup'
import SlackIcon from './Slack'
import GitHubIcon from './GitHub'
import InstagramIcon from './Instagram'
+import TwitchIcon from './Twitch'
import QuestionsIcon from './Questions'
import MapIcon from './Map'
@@ -18,6 +19,7 @@ export {
SlackIcon,
GitHubIcon,
InstagramIcon,
+ TwitchIcon,
QuestionsIcon,
MapIcon,
UsersIcon,