From a68f2eaba3d790cdf5c6dc2e0356697fe3454922 Mon Sep 17 00:00:00 2001 From: Jake Runyan Date: Sun, 29 Dec 2024 21:05:33 -1000 Subject: [PATCH] Update contact, about, navbar, and footer --- src/App.js | 4 +- src/components/About.css | 46 +++++++++++++++++ src/components/About.js | 34 +++++++++++++ src/components/Contact.css | 17 +++++++ src/components/Contact.js | 2 + src/components/Navbar.css | 59 +++++++++++++++------- src/components/Navbar.js | 16 ++++-- src/components/static/instagram-dark.png | Bin 0 -> 19204 bytes src/components/static/instagram-light.png | Bin 0 -> 20134 bytes 9 files changed, 157 insertions(+), 21 deletions(-) create mode 100644 src/components/About.css create mode 100644 src/components/About.js create mode 100644 src/components/Contact.css create mode 100644 src/components/static/instagram-dark.png create mode 100644 src/components/static/instagram-light.png diff --git a/src/App.js b/src/App.js index b662d6d..1b34432 100644 --- a/src/App.js +++ b/src/App.js @@ -3,6 +3,7 @@ import { BrowserRouter as Router, Route, Routes } from 'react-router-dom'; import Navbar from './components/Navbar'; import Home from './components/Home'; import Contact from './components/Contact'; +import About from './components/About'; import Footer from './components/Footer'; const App = () => { @@ -13,9 +14,10 @@ const App = () => { } /> } /> + } /> +