Skip to content

Commit abfe004

Browse files
authored
Merge pull request #1 from rishuraj1/icons-style
Icons style
2 parents 0d63068 + 5e8451f commit abfe004

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

src/components/Footer.jsx

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import logo from "../../public/Images/logo.jpg";
1212
const Footer = () => {
1313
let year = new Date().getFullYear();
1414

15+
1516
return (
1617
<footer className="bg-black bottom-0 mb-6 pt-32 font-primary">
1718
<div className="flex flex-col gap-8 justify-between content-center md:flex-row">
@@ -45,22 +46,22 @@ const Footer = () => {
4546
href="/"
4647
rel="noreferrer"
4748
target="_blank"
48-
className="text-black transition hover:text-gray-700/75 dark:text-white dark:hover:text-gray-100/90"
4949
>
50-
<FaFacebookF size={20} />
50+
<FaFacebookF size={20}
51+
className="dark:text-white dark:hover:text-[#3b5998] transition-all duration-150 ease-in-out" />
5152
</Link>
5253
</li>
5354

5455
<li>
5556
<Link
5657
href="https://twitter.com/devs_in_tech"
57-
aria-label="Visit us on Twitter"
58+
aria-label="Visit us on Twitter"
5859
title="Twitter (External Link)"
5960
rel="noopener noreferrer"
6061
target="_blank"
61-
className="text-black transition hover:text-gray-700/75 dark:text-white dark:hover:text-gray-100/90"
6262
>
63-
<FaTwitter size={20} />
63+
<FaTwitter size={20}
64+
className="dark:fill-white hover:fill-[#1DA1F2] transition-all duration-200 ease-in-out" />
6465
</Link>
6566
</li>
6667

@@ -70,12 +71,12 @@ const Footer = () => {
7071
<Link
7172
href="/"
7273
target="_blank"
73-
aria-label="Visit us on Linkedin"
74+
aria-label="Visit us on Linkedin"
7475
title="Linkedin (External Link)"
7576
rel="noopener noreferrer"
76-
className="text-black transition hover:text-gray-700/75 dark:text-white dark:hover:text-gray-100/90"
7777
>
78-
<FaLinkedinIn size={20} />
78+
<FaLinkedinIn size={20}
79+
className="hover:fill-[#0072b1] dark:fill-white transition-all duration-200 ease-in-out" />
7980
</Link>
8081
</li>
8182

@@ -84,13 +85,13 @@ const Footer = () => {
8485
<li>
8586
<Link
8687
href="/"
87-
aria-label="Visit us on Instagram"
88+
aria-label="Visit us on Instagram"
8889
title="Instagram (External Link)"
8990
rel="noopener noreferrer"
9091
target="_blank"
91-
className="text-black transition hover:text-gray-700/75 dark:text-white dark:hover:text-gray-100/90"
9292
>
93-
<FaInstagram size={20} />
93+
<FaInstagram size={20}
94+
className="hover:fill-[#E4405F] dark:fill-white transition-all ease-in-out duration-200" />
9495
</Link>
9596
</li>
9697

@@ -99,13 +100,13 @@ const Footer = () => {
99100
<li>
100101
<Link
101102
href="https://discord.com/invite/g7FmxB9uZp"
102-
aria-label="Join with us on Discord"
103+
aria-label="Join with us on Discord"
103104
title="Discord (External Link)"
104105
rel="noopener noreferrer"
105106
target="_blank"
106-
className="text-black transition hover:text-gray-700/75 dark:text-white dark:hover:text-gray-100/90"
107107
>
108-
<FaDiscord size={20} />
108+
<FaDiscord size={20}
109+
className="hover:fill-[#5865F2] dark:fill-white transition-all duration-200 ease-in-out" />
109110
</Link>
110111
</li>
111112
</ul>

0 commit comments

Comments
 (0)