diff --git a/public/oak-leaf-blue.png b/public/oak-leaf-blue.png deleted file mode 100644 index 02fc590..0000000 Binary files a/public/oak-leaf-blue.png and /dev/null differ diff --git a/src/App.scss b/src/App.scss index a3d7440..836e549 100644 --- a/src/App.scss +++ b/src/App.scss @@ -54,4 +54,8 @@ h1 { margin-bottom: 0; } } +} + +.site-footer { + background: #FFF; } \ No newline at end of file diff --git a/src/Footer.jsx b/src/Footer.jsx index d335c67..63a7025 100644 --- a/src/Footer.jsx +++ b/src/Footer.jsx @@ -1,16 +1,58 @@ +import uconnLogo from './assets/University_of_Connecticut_logo.svg' + function Footer() { return ( <> - ); } diff --git a/src/Navbar.jsx b/src/Navbar.jsx index d67c8e2..7b6da73 100644 --- a/src/Navbar.jsx +++ b/src/Navbar.jsx @@ -1,12 +1,16 @@ -import { Link } from "react-router-dom"; -import { useState } from 'react'; +import { Link } from "react-router-dom" +import { useState } from 'react' +import uconnLogo from './assets/University_of_Connecticut_logo.svg' + const Navbar = () => { const [isNavCollapsed, setIsNavCollapsed] = useState(true); const handleNavCollapse = () => setIsNavCollapsed(!isNavCollapsed); return (