From 88b8c61e49f3318718acb0e36a643fb5dcd5cb89 Mon Sep 17 00:00:00 2001 From: dertyp7 Date: Sun, 14 Jan 2024 16:56:48 +0100 Subject: [PATCH] Add Footer component to App.tsx --- src/App.tsx | 2 ++ src/components/Footer.tsx | 61 +++++++++++++++++++++++++++++++++++++++ src/styles/Footer.scss | 48 ++++++++++++++++++++++++++++++ 3 files changed, 111 insertions(+) create mode 100644 src/components/Footer.tsx create mode 100644 src/styles/Footer.scss diff --git a/src/App.tsx b/src/App.tsx index 5b9ad31..7486f27 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -6,6 +6,7 @@ import SectionScroll from "@components/SectionScroll"; import Skills from "@components/Skills"; import Projects from "@components/Projects"; import SectionLine from "@components/SectionLine"; +import Footer from "@components/Footer"; export default function App() { const aboutRef = useRef(null); @@ -58,6 +59,7 @@ export default function App() { +