diff --git a/bun.lockb b/bun.lockb
index 479364b..9638034 100755
Binary files a/bun.lockb and b/bun.lockb differ
diff --git a/src/components/Footer/Footer.scss b/src/components/Footer/Footer.scss
index 262d526..970f6bd 100644
--- a/src/components/Footer/Footer.scss
+++ b/src/components/Footer/Footer.scss
@@ -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;
+}
diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx
index 1ee4654..84ab2f6 100644
--- a/src/components/Footer/Footer.tsx
+++ b/src/components/Footer/Footer.tsx
@@ -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:wildhacks@northwestern.edu">Email</a>
+      </div>
+    </div>
+  );
 };
 
 export default Footer;