Skip to content

Commit

Permalink
Merge pull request #100 from Amanjayswal500/main
Browse files Browse the repository at this point in the history
Update Twitter icon in Footer.jsx
  • Loading branch information
manikumarreddyu authored Oct 5, 2024
2 parents 86494aa + 6c85790 commit b1f1909
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/src/components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import React from 'react';
import { Link } from "react-router-dom";
import playstore from "../assets/favicon2.png";
import { FaHome, FaGithub, FaRegCopyright, FaDiscord, FaTwitter, FaLinkedinIn } from 'react-icons/fa';
import { FaHome, FaGithub, FaRegCopyright, FaDiscord, FaLinkedinIn } from 'react-icons/fa';
import {FaXTwitter} from 'react-icons/fa6';

const Footer = () => {
const currentYear = new Date().getFullYear();
Expand Down Expand Up @@ -72,7 +73,7 @@ const Footer = () => {
{[
{ Icon: FaGithub, link: 'https://github.com/manikumarreddyu/AgroTech-AI', color: '#333' },
{ Icon: FaDiscord, link: 'https://discord.gg/yRPQDDP6', color: '#7289DA' },
{ Icon: FaTwitter, link: '/', color: '#1DA1F2' },
{ Icon: FaXTwitter, link: '/', color: '#1DA1F2' },
{ Icon: FaLinkedinIn, link: 'https://www.linkedin.com/in/manikumarreddyu', color: '#0077B5' },
].map(({ Icon, link, color }, index) => (
<a
Expand Down

0 comments on commit b1f1909

Please sign in to comment.