From 6c553782df862bd142cdb71d78b3ae828db5e2cc Mon Sep 17 00:00:00 2001 From: Scott Cathcart Date: Tue, 19 Nov 2024 08:20:42 -0500 Subject: [PATCH] uconn header, uconn footer, react update for banner logic --- index.html | 3 +- src/About.jsx | 14 +- src/App.jsx | 2 + src/Contact.jsx | 14 +- src/Footer.jsx | 14 +- src/UConnFooter.jsx | 30 ++++ src/UConnFooter.scss | 37 +++++ src/UConnHeader.jsx | 137 +++++++++++++++++- src/UConnHeader.scss | 5 + src/assets/banner.js | 134 ----------------- .../fonts/proximanova-bold-webfont.woff.1 | Bin 18116 -> 0 bytes 11 files changed, 233 insertions(+), 157 deletions(-) create mode 100644 src/UConnFooter.jsx create mode 100644 src/UConnFooter.scss delete mode 100644 src/assets/banner.js delete mode 100644 src/assets/fonts/proximanova-bold-webfont.woff.1 diff --git a/index.html b/index.html index 9334998..eb5ed36 100644 --- a/index.html +++ b/index.html @@ -7,8 +7,7 @@ Container React Test -
+
- diff --git a/src/About.jsx b/src/About.jsx index 227370e..075b0b8 100644 --- a/src/About.jsx +++ b/src/About.jsx @@ -2,11 +2,15 @@ function About() { return ( <> -
-

About

-
-
-

Welcome to the about page...

+
+
+
+

About

+
+
+

Welcome to the about page...

+
+
diff --git a/src/App.jsx b/src/App.jsx index 59d80ff..f93999f 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -6,6 +6,7 @@ import About from './About' import Contact from './Contact' import Footer from './Footer' import UConnHeader from './UConnHeader'; +import UConnFooter from './UConnFooter'; function App() { @@ -19,6 +20,7 @@ function App() { } />