From 118c01d816b8f440611cc3ed301a09f493012efb Mon Sep 17 00:00:00 2001 From: Juthatip McDevitt Date: Sat, 16 Mar 2024 16:37:39 -0500 Subject: [PATCH] added footer and listing for homepage --- real_estate/client/src/App.jsx | 2 + real_estate/client/src/components/Footer.jsx | 69 ++++++++++++++++ real_estate/client/src/pages/Home.jsx | 86 +++++++++++++++++++- 3 files changed, 156 insertions(+), 1 deletion(-) create mode 100644 real_estate/client/src/components/Footer.jsx diff --git a/real_estate/client/src/App.jsx b/real_estate/client/src/App.jsx index abf25d3..728711d 100644 --- a/real_estate/client/src/App.jsx +++ b/real_estate/client/src/App.jsx @@ -10,6 +10,7 @@ import CreatListing from './pages/CreatListing' import UpdateListing from './pages/UpdateListing' import Listing from './pages/Listing' import SearchProperties from './pages/SearchProperties' +import Footer from './components/Footer' const App = () => { @@ -29,6 +30,7 @@ const App = () => { }/> }/> +