├── .env ├── .env.freelancer ├── .env.production ├── .gitignore ├── LICENSE.md ├── README.md ├── package.json ├── public ├── ZIP_CODES.geojson ├── favicon.ico ├── images │ ├── bathroom-svgrepo-com.svg │ ├── bed-7.svg │ ├── bedroom-svgrepo-com.svg │ ├── get-loan.svg │ ├── loader_grey.svg │ ├── set-square-svgrepo-com.svg │ ├── square-layout-with-boxes-svgrepo-com.svg │ └── toilet-svgrepo-com.svg ├── index.html ├── logo.png ├── logo192.png ├── logo512.png ├── manifest.json ├── robots.txt └── user_profile.png └── src ├── App.css ├── App.js ├── App.test.js ├── Constant.jsx ├── components ├── Account │ ├── AccountDropdown │ │ ├── index.jsx │ │ └── index.scss │ ├── Header │ │ ├── index.jsx │ │ └── index.scss │ ├── SavedHome │ │ ├── DeleteSavedHomeModal.jsx │ │ ├── HomeDetailItem.jsx │ │ ├── HomeFilter.jsx │ │ ├── HomeFilter.scss │ │ ├── SavedHomeItem.jsx │ │ └── SavedHomeItem.scss │ └── SavedSearch │ │ └── SavedSearchItem.jsx ├── Common │ ├── DropDown.jsx │ ├── DropDown.scss │ ├── Loading.jsx │ ├── Loading.scss │ ├── Modal.Style.jsx │ ├── Pagenation.jsx │ ├── Pagenation.scss │ ├── SelectBox.jsx │ ├── SelectBox.scss │ ├── ToggleSwitch.jsx │ └── ToggleSwitch.scss ├── Filters │ ├── BedsAndBaths.jsx │ ├── BedsAndBaths.scss │ ├── HomeType.jsx │ ├── HomeType.scss │ ├── More.jsx │ ├── More.scss │ ├── MoreContent.jsx │ ├── Price.jsx │ ├── Price.scss │ ├── PriceContent.jsx │ ├── SaleOrRent.jsx │ ├── SaleOrRent.scss │ ├── SaleOrRentContent.jsx │ ├── index.jsx │ └── index.scss ├── GoogleMap.jsx ├── ItemBubble.jsx ├── ItemBubble.scss ├── ItemBubbleContent.jsx ├── ListingModal │ ├── Contact.jsx │ ├── DataDrivenDisplay.jsx │ ├── Detail.jsx │ ├── Detail.scss │ ├── Gallery.jsx │ ├── Gallery.scss │ ├── GalleryLightbox.jsx │ ├── GalleryLightbox.scss │ ├── Overview.jsx │ ├── Overview.scss │ ├── TabBar.jsx │ ├── TabBar.scss │ ├── index.jsx │ ├── index.scss │ └── metadata.json ├── Login │ ├── LoginContainer.jsx │ ├── LoginContainer.scss │ ├── Register.jsx │ ├── SignIn.jsx │ ├── SocailLogin.jsx │ ├── index.jsx │ └── index.scss ├── SaveFavorite.jsx ├── SaveSearch.jsx ├── SearchForm.jsx └── SearchForm.scss ├── contexts └── SessionContext.jsx ├── hooks └── useWindowSize.jsx ├── index.css ├── index.js ├── logo.svg ├── pages ├── Home.jsx ├── SavedHomes.jsx └── SavedSearch.jsx ├── reportWebVitals.js ├── services ├── DetailService.jsx ├── GeoService.jsx ├── SearchService.jsx └── UserService.jsx └── setupTests.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/.env -------------------------------------------------------------------------------- /.env.freelancer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/.env.freelancer -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | # production settings will go here -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/package.json -------------------------------------------------------------------------------- /public/ZIP_CODES.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/ZIP_CODES.geojson -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/bathroom-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/images/bathroom-svgrepo-com.svg -------------------------------------------------------------------------------- /public/images/bed-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/images/bed-7.svg -------------------------------------------------------------------------------- /public/images/bedroom-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/images/bedroom-svgrepo-com.svg -------------------------------------------------------------------------------- /public/images/get-loan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/images/get-loan.svg -------------------------------------------------------------------------------- /public/images/loader_grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/images/loader_grey.svg -------------------------------------------------------------------------------- /public/images/set-square-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/images/set-square-svgrepo-com.svg -------------------------------------------------------------------------------- /public/images/square-layout-with-boxes-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/images/square-layout-with-boxes-svgrepo-com.svg -------------------------------------------------------------------------------- /public/images/toilet-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/images/toilet-svgrepo-com.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/user_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/public/user_profile.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Constant.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/Constant.jsx -------------------------------------------------------------------------------- /src/components/Account/AccountDropdown/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Account/AccountDropdown/index.jsx -------------------------------------------------------------------------------- /src/components/Account/AccountDropdown/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Account/AccountDropdown/index.scss -------------------------------------------------------------------------------- /src/components/Account/Header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Account/Header/index.jsx -------------------------------------------------------------------------------- /src/components/Account/Header/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Account/Header/index.scss -------------------------------------------------------------------------------- /src/components/Account/SavedHome/DeleteSavedHomeModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Account/SavedHome/DeleteSavedHomeModal.jsx -------------------------------------------------------------------------------- /src/components/Account/SavedHome/HomeDetailItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Account/SavedHome/HomeDetailItem.jsx -------------------------------------------------------------------------------- /src/components/Account/SavedHome/HomeFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Account/SavedHome/HomeFilter.jsx -------------------------------------------------------------------------------- /src/components/Account/SavedHome/HomeFilter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Account/SavedHome/HomeFilter.scss -------------------------------------------------------------------------------- /src/components/Account/SavedHome/SavedHomeItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Account/SavedHome/SavedHomeItem.jsx -------------------------------------------------------------------------------- /src/components/Account/SavedHome/SavedHomeItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Account/SavedHome/SavedHomeItem.scss -------------------------------------------------------------------------------- /src/components/Account/SavedSearch/SavedSearchItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Account/SavedSearch/SavedSearchItem.jsx -------------------------------------------------------------------------------- /src/components/Common/DropDown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Common/DropDown.jsx -------------------------------------------------------------------------------- /src/components/Common/DropDown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Common/DropDown.scss -------------------------------------------------------------------------------- /src/components/Common/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Common/Loading.jsx -------------------------------------------------------------------------------- /src/components/Common/Loading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Common/Loading.scss -------------------------------------------------------------------------------- /src/components/Common/Modal.Style.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Common/Modal.Style.jsx -------------------------------------------------------------------------------- /src/components/Common/Pagenation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Common/Pagenation.jsx -------------------------------------------------------------------------------- /src/components/Common/Pagenation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Common/Pagenation.scss -------------------------------------------------------------------------------- /src/components/Common/SelectBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Common/SelectBox.jsx -------------------------------------------------------------------------------- /src/components/Common/SelectBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Common/SelectBox.scss -------------------------------------------------------------------------------- /src/components/Common/ToggleSwitch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Common/ToggleSwitch.jsx -------------------------------------------------------------------------------- /src/components/Common/ToggleSwitch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Common/ToggleSwitch.scss -------------------------------------------------------------------------------- /src/components/Filters/BedsAndBaths.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/BedsAndBaths.jsx -------------------------------------------------------------------------------- /src/components/Filters/BedsAndBaths.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/BedsAndBaths.scss -------------------------------------------------------------------------------- /src/components/Filters/HomeType.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/HomeType.jsx -------------------------------------------------------------------------------- /src/components/Filters/HomeType.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/HomeType.scss -------------------------------------------------------------------------------- /src/components/Filters/More.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/More.jsx -------------------------------------------------------------------------------- /src/components/Filters/More.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/More.scss -------------------------------------------------------------------------------- /src/components/Filters/MoreContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/MoreContent.jsx -------------------------------------------------------------------------------- /src/components/Filters/Price.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/Price.jsx -------------------------------------------------------------------------------- /src/components/Filters/Price.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/Price.scss -------------------------------------------------------------------------------- /src/components/Filters/PriceContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/PriceContent.jsx -------------------------------------------------------------------------------- /src/components/Filters/SaleOrRent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/SaleOrRent.jsx -------------------------------------------------------------------------------- /src/components/Filters/SaleOrRent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/SaleOrRent.scss -------------------------------------------------------------------------------- /src/components/Filters/SaleOrRentContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/SaleOrRentContent.jsx -------------------------------------------------------------------------------- /src/components/Filters/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/index.jsx -------------------------------------------------------------------------------- /src/components/Filters/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Filters/index.scss -------------------------------------------------------------------------------- /src/components/GoogleMap.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/GoogleMap.jsx -------------------------------------------------------------------------------- /src/components/ItemBubble.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ItemBubble.jsx -------------------------------------------------------------------------------- /src/components/ItemBubble.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ItemBubble.scss -------------------------------------------------------------------------------- /src/components/ItemBubbleContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ItemBubbleContent.jsx -------------------------------------------------------------------------------- /src/components/ListingModal/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/Contact.jsx -------------------------------------------------------------------------------- /src/components/ListingModal/DataDrivenDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/DataDrivenDisplay.jsx -------------------------------------------------------------------------------- /src/components/ListingModal/Detail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/Detail.jsx -------------------------------------------------------------------------------- /src/components/ListingModal/Detail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/Detail.scss -------------------------------------------------------------------------------- /src/components/ListingModal/Gallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/Gallery.jsx -------------------------------------------------------------------------------- /src/components/ListingModal/Gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/Gallery.scss -------------------------------------------------------------------------------- /src/components/ListingModal/GalleryLightbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/GalleryLightbox.jsx -------------------------------------------------------------------------------- /src/components/ListingModal/GalleryLightbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/GalleryLightbox.scss -------------------------------------------------------------------------------- /src/components/ListingModal/Overview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/Overview.jsx -------------------------------------------------------------------------------- /src/components/ListingModal/Overview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/Overview.scss -------------------------------------------------------------------------------- /src/components/ListingModal/TabBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/TabBar.jsx -------------------------------------------------------------------------------- /src/components/ListingModal/TabBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/TabBar.scss -------------------------------------------------------------------------------- /src/components/ListingModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/index.jsx -------------------------------------------------------------------------------- /src/components/ListingModal/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/index.scss -------------------------------------------------------------------------------- /src/components/ListingModal/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/ListingModal/metadata.json -------------------------------------------------------------------------------- /src/components/Login/LoginContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Login/LoginContainer.jsx -------------------------------------------------------------------------------- /src/components/Login/LoginContainer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Login/LoginContainer.scss -------------------------------------------------------------------------------- /src/components/Login/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Login/Register.jsx -------------------------------------------------------------------------------- /src/components/Login/SignIn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Login/SignIn.jsx -------------------------------------------------------------------------------- /src/components/Login/SocailLogin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Login/SocailLogin.jsx -------------------------------------------------------------------------------- /src/components/Login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Login/index.jsx -------------------------------------------------------------------------------- /src/components/Login/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/Login/index.scss -------------------------------------------------------------------------------- /src/components/SaveFavorite.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/SaveFavorite.jsx -------------------------------------------------------------------------------- /src/components/SaveSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/SaveSearch.jsx -------------------------------------------------------------------------------- /src/components/SearchForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/components/SearchForm.jsx -------------------------------------------------------------------------------- /src/components/SearchForm.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/contexts/SessionContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/contexts/SessionContext.jsx -------------------------------------------------------------------------------- /src/hooks/useWindowSize.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/hooks/useWindowSize.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/SavedHomes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/pages/SavedHomes.jsx -------------------------------------------------------------------------------- /src/pages/SavedSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/pages/SavedSearch.jsx -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/services/DetailService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/services/DetailService.jsx -------------------------------------------------------------------------------- /src/services/GeoService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/services/GeoService.jsx -------------------------------------------------------------------------------- /src/services/SearchService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/services/SearchService.jsx -------------------------------------------------------------------------------- /src/services/UserService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/services/UserService.jsx -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Risk-taker0501/redzilla-client/HEAD/src/setupTests.js --------------------------------------------------------------------------------