From 513269eb1f68ff89dc8d82980c2212db28ab9b5b Mon Sep 17 00:00:00 2001 From: carsonSgit <92652800+carsonSgit@users.noreply.github.com> Date: Fri, 16 Aug 2024 21:06:51 -0400 Subject: [PATCH 01/11] feat: Init Footer component file --- src/Components/Footer/Footer.tsx | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/Components/Footer/Footer.tsx diff --git a/src/Components/Footer/Footer.tsx b/src/Components/Footer/Footer.tsx new file mode 100644 index 0000000..e69de29 From d583bddef9240ef9e50902d96df2e5121c6ad1ee Mon Sep 17 00:00:00 2001 From: carsonSgit <92652800+carsonSgit@users.noreply.github.com> Date: Fri, 16 Aug 2024 21:10:19 -0400 Subject: [PATCH 02/11] feat: Starter footer - Includes icons to hyperlinks --- src/App.tsx | 2 ++ src/Components/Footer/Footer.tsx | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index 18836e8..8ed905d 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -6,6 +6,7 @@ import Experience from './Components/Experience/Experience'; import { Route, Routes } from 'react-router-dom'; import Navbar from './Components/Navbar'; import './App.scss'; +import Footer from './Components/Footer/Footer'; const App: React.FC = () => { return ( @@ -17,6 +18,7 @@ const App: React.FC = () => { } /> } /> +