From 99ce761ea86e6a836bde97e2112fcce887e0616c Mon Sep 17 00:00:00 2001 From: Scott Cathcart Date: Mon, 25 Nov 2024 13:58:41 -0500 Subject: [PATCH] move contact to checkout, add contact, update home rounded, updating pricing footer --- src/App.jsx | 2 + src/Checkout.jsx | 232 +++++++++++++++++++++++++++++++++++++++++++++++ src/Contact.jsx | 222 +++------------------------------------------ src/Home.jsx | 2 +- src/Pricing.jsx | 4 +- 5 files changed, 248 insertions(+), 214 deletions(-) create mode 100644 src/Checkout.jsx diff --git a/src/App.jsx b/src/App.jsx index a639d0f..46f7008 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -7,6 +7,7 @@ import UConnFooter from './UConnFooter'; import Home from './Home' import About from './About' import Contact from './Contact' +import Checkout from './Checkout' import Pricing from './Pricing' function App() { @@ -20,6 +21,7 @@ function App() { } /> } /> } /> + } />