Skip to content

Commit

Permalink
feat(social-networks.js): corrigiendo rutas de redireccionamiento
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanrjdev committed Oct 31, 2020
1 parent a4fafe3 commit 5bc6363
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions src/components/hero-section/social-networks/social-networks.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react';
import githubSVG from '../../../images/icons/github.svg';
import telegramSVG from '../../../images/icons/telegram.svg';
import twitterSVG from '../../../images/icons/twitter.svg';
import eventbriteSVG from '../../../images/icons/eventbrite.png';
import './social-networks.css'
import React from "react";
import githubSVG from "../../../images/icons/github.svg";
import telegramSVG from "../../../images/icons/telegram.svg";
import twitterSVG from "../../../images/icons/twitter.svg";
import eventbriteSVG from "../../../images/icons/eventbrite.png";
import "./social-networks.css";

const SocialNetworks = () => (
<div className="social-networks">
Expand All @@ -12,14 +12,17 @@ const SocialNetworks = () => (
<a href="https://github.com/javascriptecuador/web" target="_blank">
<img src={githubSVG} alt="imagen github" />
</a>
<a href="#">
<img src={telegramSVG} alt="imagen github" />
<a href="https://t.me/javascriptecuador" target="_blank">
<img src={telegramSVG} alt="imagen telegram" />
</a>
<a href="#">
<img src={twitterSVG} alt="imagen github" />
<a href="https://twitter.com/jsecuador_" target="_blank">
<img src={twitterSVG} alt="imagen twitter" />
</a>
<a href="#">
<img src={eventbriteSVG} alt="imagen github" />
<a
href="https://www.eventbrite.com/o/javascript-ecuador-29109297643?aff=eand"
target="_blank"
>
<img src={eventbriteSVG} alt="imagen eventBrite" />
</a>
</div>
</div>
Expand Down

0 comments on commit 5bc6363

Please sign in to comment.