From 97192e84670254342c5d625fed64395c6055c949 Mon Sep 17 00:00:00 2001 From: zander37 Date: Sat, 11 Oct 2025 23:07:38 -0400 Subject: [PATCH] Footer Component Added --- src/App.css | 2 +- src/App.jsx | 3 +- src/Components/Footer.css | 93 +++++++++++++++++++++++++++++++ src/Components/Footer.jsx | 48 ++++++++++++++++ src/assets/mil.png | Bin 0 -> 2407 bytes src/assets/socials/github.svg | 29 ++++++++++ src/assets/socials/instagram.svg | 24 ++++++++ src/assets/socials/link.svg | 24 ++++++++ src/assets/socials/linkedin.svg | 24 ++++++++ src/assets/socials/youtube.svg | 22 ++++++++ src/assets/uf.png | Bin 0 -> 15718 bytes 11 files changed, 267 insertions(+), 2 deletions(-) create mode 100644 src/Components/Footer.css create mode 100644 src/Components/Footer.jsx create mode 100644 src/assets/mil.png create mode 100644 src/assets/socials/github.svg create mode 100644 src/assets/socials/instagram.svg create mode 100644 src/assets/socials/link.svg create mode 100644 src/assets/socials/linkedin.svg create mode 100644 src/assets/socials/youtube.svg create mode 100644 src/assets/uf.png diff --git a/src/App.css b/src/App.css index b9d355d..7781a22 100644 --- a/src/App.css +++ b/src/App.css @@ -1,7 +1,7 @@ #root { max-width: 1280px; margin: 0 auto; - padding: 2rem; + padding: 2rem 2rem 0; text-align: center; } diff --git a/src/App.jsx b/src/App.jsx index fee585b..2c417f5 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -9,6 +9,7 @@ import RoboSub from "./Pages/RoboSub"; import AUVTechnology from "./Pages/AUVTechnology"; import Sponsors from "./Pages/Sponsors"; import OurTeam from "./Pages/OurTeam"; +import Footer from "./Components/Footer"; import "./App.css"; function App() { @@ -26,7 +27,7 @@ function App() { } /> - {/* We'll add a footer component later */} +