-
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.
Revert "Implement footer component with layout styling (#2)"
This reverts commit 41b48aa.
- Loading branch information
Showing
3 changed files
with
1 addition
and
31 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 |
---|---|---|
@@ -1,20 +1 @@ | ||
@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; | ||
} |
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,21 +1,10 @@ | ||
import React from "react"; | ||
import reactLogo from "../../assets/react.svg"; | ||
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> | ||
</div> | ||
</div> | ||
); | ||
return <div>some words</div>; | ||
}; | ||
|
||
export default Footer; |