Skip to content

Commit

Permalink
apply consistent formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Darin committed Nov 15, 2024
1 parent a831732 commit 8001cc3
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 8001cc3

Please sign in to comment.