From e8fe1dec71ad3362ef977b4a15e2df8a5d0054ec Mon Sep 17 00:00:00 2001 From: Andrew Li Date: Fri, 15 Nov 2024 17:05:52 -0600 Subject: [PATCH] Revert "Implement footer component with layout styling (#2)" (#4) This reverts commit 41b48aa720a1cad1579e90339276e2afaa9925c8. --- bun.lockb | Bin 95193 -> 95193 bytes src/components/Footer/Footer.scss | 19 ------------------- src/components/Footer/Footer.tsx | 13 +------------ 3 files changed, 1 insertion(+), 31 deletions(-) diff --git a/bun.lockb b/bun.lockb index 9638034ccc1f01c21de70eea0da2e300f570ced5..479364bfcdf026f2d297cd8ad4a28f6f4cb5d152 100755 GIT binary patch delta 22 acmcclob~2&)(we&*_jx?U~|Ub!ZHAFCkUYc delta 22 ccmcclob~2&)(we&*%{-E^?-15#^1s+0D8>{^8f$< diff --git a/src/components/Footer/Footer.scss b/src/components/Footer/Footer.scss index 970f6bd..262d526 100644 --- a/src/components/Footer/Footer.scss +++ b/src/components/Footer/Footer.scss @@ -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; -} diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx index 84ab2f6..1ee4654 100644 --- a/src/components/Footer/Footer.tsx +++ b/src/components/Footer/Footer.tsx @@ -1,21 +1,10 @@ import React from "react"; -import reactLogo from "../../assets/react.svg"; import "./Footer.scss"; interface IFooter {} export const Footer: React.FC = () => { - return ( - - ); + return
some words
; }; export default Footer;