diff --git a/bun.lockb b/bun.lockb index 9638034..479364b 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 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;