-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add FontAwesome; use logo icons instead of words for socials
- Loading branch information
Darin
committed
Nov 16, 2024
1 parent
f3ca7a5
commit 3781331
Showing
3 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
import React from "react"; | ||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; | ||
import { faInstagram, faLinkedin } from "@fortawesome/free-brands-svg-icons"; | ||
import { faEnvelope } from "@fortawesome/free-solid-svg-icons"; | ||
import reactLogo from "../../assets/react.svg"; | ||
import "./Footer.scss"; | ||
|
||
|
@@ -15,15 +18,17 @@ export const Footer: React.FC<IFooter> = () => { | |
<div> | ||
<div className="footer__flexbox"> | ||
<a href="https://www.instagram.com/wildhacks/" rel="noreferrer"> | ||
<FontAwesomeIcon icon={faInstagram} /> | ||
</a> | ||
<a | ||
href="https://www.linkedin.com/company/wildhacks/" | ||
rel="noreferrer" | ||
> | ||
<FontAwesomeIcon icon={faLinkedin} /> | ||
</a> | ||
<a href="mailto:[email protected]"> | ||
<FontAwesomeIcon icon={faEnvelope} /> | ||
</a> | ||
<a href="mailto:[email protected]">Email</a> | ||
</div> | ||
</div> | ||
</div> | ||
|