Skip to content

Commit 1f2f35c

Browse files
Merge pull request #396 from Shweta2117409/update-twitter-icon-to-x-branding
Replaced outdated twitter icon with X branding
2 parents 5bbce1a + 804e86d commit 1f2f35c

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

src/components/Footer.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,17 @@ import React, { useState } from 'react';
22
import { FaGithub, FaDiscord, FaArrowRight } from 'react-icons/fa';
33
import { FaXTwitter } from 'react-icons/fa6';
44
import { Link } from 'react-router-dom';
5+
56
import {
67
FaGithub,
7-
FaTwitter,
88
FaDiscord,
99
FaArrowRight,
1010
FaEnvelope,
1111
FaInfoCircle,
1212
} from 'react-icons/fa';
1313

14+
import { FaXTwitter } from 'react-icons/fa6';
15+
1416
function Footer() {
1517
const [email, setEmail] = useState('');
1618

@@ -160,14 +162,14 @@ function Footer() {
160162
<FaGithub className="h-6 w-6" />
161163
</a>
162164

163-
{/* Twitter */}
165+
{/* X / Twitter */}
164166
<a
165167
href="#"
166168
onClick={(e) => e.preventDefault()}
167-
className="text-zinc-600 dark:text-zinc-400 hover:text-sky-500 dark:hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
168-
aria-label="Twitter"
169+
className="text-zinc-600 dark:text-zinc-400 hover:text-zinc-100 transition-all duration-300 hover:-translate-y-1 hover:scale-110 opacity-70 cursor-not-allowed"
170+
aria-label="X"
169171
>
170-
<FaXTwitter className="h-7 w-7" />
172+
<FaXTwitter className="h-6 w-6" />
171173
</a>
172174

173175
{/* Discord */}

0 commit comments

Comments
 (0)