-
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.
- Loading branch information
Darin
committed
Nov 15, 2024
1 parent
a831732
commit 8001cc3
Showing
1 changed file
with
10 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,17 @@ import "./Footer.scss"; | |
interface IFooter {} | ||
|
||
export const Footer: React.FC<IFooter> = () => { | ||
return (<div id="footer"> | ||
<img src={ reactLogo } alt="Placeholder" /> | ||
<h2>WildHacks 2025</h2> | ||
<div id="footer-socials"> | ||
<a href="https://www.instagram.com/wildhacks/">Instagram</a> | ||
<a href="https://www.linkedin.com/company/wildhacks/">LinkedIn</a> | ||
<a href="mailto:[email protected]">Email</a> | ||
return ( | ||
<div id="footer"> | ||
<img src={reactLogo} alt="Placeholder" /> | ||
<h2>WildHacks 2025</h2> | ||
<div id="footer-socials"> | ||
<a href="https://www.instagram.com/wildhacks/">Instagram</a> | ||
<a href="https://www.linkedin.com/company/wildhacks/">LinkedIn</a> | ||
<a href="mailto:[email protected]">Email</a> | ||
</div> | ||
</div> | ||
</div>); | ||
); | ||
}; | ||
|
||
export default Footer; |