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 = () => { - return
some words
; + return ( + + ); }; export default Footer;