Skip to content

Commit

Permalink
updated twitter icon
Browse files Browse the repository at this point in the history
  • Loading branch information
srilekha279 committed Aug 7, 2024
1 parent ffce8ce commit 6a14e4b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useEffect, useState } from "react";
import "./Footer.css";
import logo from "../../assets/logo2.png";
import { FaGithub, FaLinkedin, FaFacebook, FaTwitter, FaInstagram } from "react-icons/fa";
import { ReactComponent as TwitterIcon } from '../../assets/twitter.png';
import twitterIcon from '../../assets/twitter.png';
import { NavLink, useNavigate } from "react-router-dom";
import { scroller } from "react-scroll";
import Visitors from "../Visitors";
Expand Down Expand Up @@ -163,19 +163,19 @@ const Footer = () => {

<div className="footer-icons footer-icons-md">
<a href="https://linkedin.com/yourpage" target="_blank" rel="noreferrer">
<FaLinkedin style={{ fontSize: "25px", color: "#0A66C2" }} />
<FaLinkedin style={{ fontSize: "25px"}} />
</a>
<a href="https://github.com/yourpage" target="_blank" rel="noreferrer">
<FaGithub style={{ fontSize: "25px", color: "#333" }} />
<FaGithub style={{ fontSize: "25px"}} />
</a>
<a href="https://facebook.com/yourpage" target="_blank" rel="noreferrer">
<FaFacebook style={{ fontSize: "25px", color: "#1877F2" }} />
<FaFacebook style={{ fontSize: "25px"}} />
</a>
<a href="https://x.com/yourpage" target="_blank" rel="noreferrer">
<TwitterXIcon style={{ fontSize: "25px", color: "#1DA1F2" }} />
</a>
<img src={twitterIcon} alt="Twitter" style={{ width: "20px", height: "20px"}} />
</a>
<a href="https://instagram.com/yourpage" target="_blank" rel="noreferrer">
<FaInstagram style={{ fontSize: "25px", color: "#C13584" }} />
<FaInstagram style={{ fontSize: "25px"}} />
</a>
</div>
<SubscriptionForm />
Expand Down

0 comments on commit 6a14e4b

Please sign in to comment.