Skip to content

Commit aae7bc5

Browse files
authored
Merge pull request #383 from blindaks/main
Added GitHub link in Footer
2 parents ef56939 + bfc22b5 commit aae7bc5

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

src/components/Footer.jsx

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ import Link from "next/link";
33
import {
44
FaDiscord,
55
FaFacebookF,
6+
FaGithub,
67
FaInstagram,
78
FaLinkedinIn,
8-
FaTwitter,
9+
FaTwitter
910
} from "react-icons/fa";
1011
import logo from "../../public/Images/logo.jpg";
1112

@@ -110,6 +111,22 @@ const Footer = () => {
110111
<FaDiscord size={20} />
111112
</Link>
112113
</li>
114+
115+
{/* GitHub icon */}
116+
117+
<li>
118+
<Link
119+
href="https://github.com/devs-in-tech/DevsInTech"
120+
aria-label="Join with us on GitHub"
121+
title="GitHub (External Link)"
122+
rel="noopener noreferrer"
123+
target="_blank"
124+
className="text-black transition hover:text-gray-700/75 dark:text-white dark:hover:text-gray-100/90"
125+
>
126+
<FaGithub size={20} />
127+
</Link>
128+
</li>
129+
113130
</ul>
114131
</div>
115132

0 commit comments

Comments
 (0)