Skip to content

Commit

Permalink
Implement footer component with layout styling (#2)
Browse files Browse the repository at this point in the history
* implement footer component with layout styling; use placeholder react logo

* apply consistent formatting

---------

Co-authored-by: Darin <[email protected]>
  • Loading branch information
dweber2022 and Darin authored Nov 15, 2024
1 parent 992fc92 commit 41b48aa
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
Binary file modified bun.lockb
Binary file not shown.
19 changes: 19 additions & 0 deletions src/components/Footer/Footer.scss
Original file line number Diff line number Diff line change
@@ -1 +1,20 @@
@use "../../shared/colors";

#footer {
position: absolute;
bottom: 0;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}

#footer img {
width: 10%;
}

#footer-socials {
display: flex;
flex-direction: row;
column-gap: 2.5rem;
}
13 changes: 12 additions & 1 deletion src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
import React from "react";
import reactLogo from "../../assets/react.svg";
import "./Footer.scss";

interface IFooter {}

export const Footer: React.FC<IFooter> = () => {
return <div>some words</div>;
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>
);
};

export default Footer;

0 comments on commit 41b48aa

Please sign in to comment.