├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── SPARKS SIH ppt.pdf ├── package.json ├── public ├── index.html ├── logo.png ├── manifest.json ├── offline.html └── serviceworker.js ├── src ├── App.css ├── App.js ├── animations │ └── tractor.json ├── api │ ├── authAPI.js │ ├── bookingAPI.js │ ├── config.js │ ├── equipments.js │ ├── profileAPI.js │ └── useGeoLocation.js ├── components │ ├── ChatSupport │ │ ├── SupportAdmin │ │ │ └── index.js │ │ └── SupportEngine │ │ │ ├── Avatar.js │ │ │ ├── SupportWindow │ │ │ ├── ChatEngine.js │ │ │ ├── EmailForm.js │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── styles.js │ ├── alerts │ │ └── index.js │ ├── cancellationForm │ │ └── index.js │ ├── dashboardComponent │ │ └── product │ │ │ ├── ProductItem.css │ │ │ └── ProductItem.jsx │ ├── dropdown │ │ ├── Dropdown.css │ │ └── Dropdown.jsx │ ├── expandText │ │ └── index.js │ ├── footer │ │ ├── Footer.css │ │ └── Footer.jsx │ ├── header │ │ ├── Header.css │ │ └── Header.jsx │ ├── homeComponent │ │ ├── ads │ │ │ ├── Ads.css │ │ │ └── Ads.jsx │ │ ├── banner │ │ │ ├── Banner.css │ │ │ └── Banner.jsx │ │ ├── equipments │ │ │ ├── Equipments.css │ │ │ └── Equipments.jsx │ │ ├── services │ │ │ ├── Services.css │ │ │ └── Services.jsx │ │ ├── stats │ │ │ ├── Stats.css │ │ │ └── Stats.jsx │ │ ├── support │ │ │ ├── Support.css │ │ │ └── Support.jsx │ │ └── workflow │ │ │ ├── Workflow.css │ │ │ └── Workflow.jsx │ ├── input │ │ ├── InputField.css │ │ └── InputField.jsx │ ├── loader │ │ └── index.js │ ├── preheader │ │ ├── PreHeader.css │ │ └── PreHeader.jsx │ └── verify-otp │ │ └── index.js ├── firebase.js ├── img │ ├── Accepted.png │ ├── Ellipse64.png │ ├── Frame3.png │ ├── Progress.png │ ├── Rectangle73.png │ ├── Rejected.png │ ├── Slider3.webp │ ├── Vector.png │ ├── Vector1.png │ ├── Vector2.png │ ├── completed.png │ ├── cross_black.svg │ ├── down-arrow.svg │ ├── footerBg.png │ ├── home1.webp │ ├── item1.png │ ├── item2.png │ ├── login_img.jpg │ ├── logo.png │ ├── logo_svg.svg │ ├── mobileServ.png │ ├── people.svg │ ├── people1.svg │ ├── services4.png │ ├── signup_img.jpg │ ├── slider2.webp │ ├── user_icon.svg │ ├── vector11.svg │ ├── vector22.svg │ ├── vector33.svg │ └── videoPic.png ├── index.css ├── index.js ├── pages │ ├── ContactUs │ │ ├── ContactUs.css │ │ └── ContactUs.jsx │ ├── EquipmentReport.js │ ├── FAQ.js │ ├── Help.js │ ├── Home.jsx │ ├── Login.js │ ├── PartnerDispute.js │ ├── Register.js │ ├── addProduct │ │ ├── AddProduct.css │ │ └── AddProduct.jsx │ ├── bookingHistory │ │ ├── data.js │ │ └── index.js │ ├── bookingRequest │ │ ├── BookingRequest.css │ │ └── BookingRequest.jsx │ ├── cancellationPage │ │ ├── CancellationPolicy.css │ │ └── CancellationPolicy.jsx │ ├── chat │ │ ├── Chat.css │ │ └── Chat.jsx │ ├── dashboard │ │ ├── Dashboard.css │ │ └── Dashboard.jsx │ ├── feedback │ │ ├── Feedback.css │ │ └── Feedback.jsx │ ├── product │ │ ├── Product.css │ │ └── Product.jsx │ └── updateProfile │ │ ├── UpdateForm.js │ │ └── index.js ├── redux │ ├── actions │ │ ├── equipActions.js │ │ └── index.js │ ├── constants │ │ └── equipConstants.js │ ├── reducers │ │ ├── authReducer.js │ │ ├── equipReducers.js │ │ ├── index.js │ │ └── tokenReducer.js │ └── store.js └── utils │ ├── validation.js │ └── verify-otp.js ├── tailwind.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/README.md -------------------------------------------------------------------------------- /SPARKS SIH ppt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/SPARKS SIH ppt.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/offline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/public/offline.html -------------------------------------------------------------------------------- /public/serviceworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/public/serviceworker.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/App.js -------------------------------------------------------------------------------- /src/animations/tractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/animations/tractor.json -------------------------------------------------------------------------------- /src/api/authAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/api/authAPI.js -------------------------------------------------------------------------------- /src/api/bookingAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/api/bookingAPI.js -------------------------------------------------------------------------------- /src/api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/api/config.js -------------------------------------------------------------------------------- /src/api/equipments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/api/equipments.js -------------------------------------------------------------------------------- /src/api/profileAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/api/profileAPI.js -------------------------------------------------------------------------------- /src/api/useGeoLocation.js: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------- /src/components/ChatSupport/SupportAdmin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/ChatSupport/SupportAdmin/index.js -------------------------------------------------------------------------------- /src/components/ChatSupport/SupportEngine/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/ChatSupport/SupportEngine/Avatar.js -------------------------------------------------------------------------------- /src/components/ChatSupport/SupportEngine/SupportWindow/ChatEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/ChatSupport/SupportEngine/SupportWindow/ChatEngine.js -------------------------------------------------------------------------------- /src/components/ChatSupport/SupportEngine/SupportWindow/EmailForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/ChatSupport/SupportEngine/SupportWindow/EmailForm.js -------------------------------------------------------------------------------- /src/components/ChatSupport/SupportEngine/SupportWindow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/ChatSupport/SupportEngine/SupportWindow/index.js -------------------------------------------------------------------------------- /src/components/ChatSupport/SupportEngine/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/ChatSupport/SupportEngine/index.js -------------------------------------------------------------------------------- /src/components/ChatSupport/SupportEngine/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/ChatSupport/SupportEngine/styles.js -------------------------------------------------------------------------------- /src/components/alerts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/alerts/index.js -------------------------------------------------------------------------------- /src/components/cancellationForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/cancellationForm/index.js -------------------------------------------------------------------------------- /src/components/dashboardComponent/product/ProductItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/dashboardComponent/product/ProductItem.css -------------------------------------------------------------------------------- /src/components/dashboardComponent/product/ProductItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/dashboardComponent/product/ProductItem.jsx -------------------------------------------------------------------------------- /src/components/dropdown/Dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/dropdown/Dropdown.css -------------------------------------------------------------------------------- /src/components/dropdown/Dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/dropdown/Dropdown.jsx -------------------------------------------------------------------------------- /src/components/expandText/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/expandText/index.js -------------------------------------------------------------------------------- /src/components/footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/footer/Footer.css -------------------------------------------------------------------------------- /src/components/footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/header/Header.css -------------------------------------------------------------------------------- /src/components/header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/header/Header.jsx -------------------------------------------------------------------------------- /src/components/homeComponent/ads/Ads.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/ads/Ads.css -------------------------------------------------------------------------------- /src/components/homeComponent/ads/Ads.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/ads/Ads.jsx -------------------------------------------------------------------------------- /src/components/homeComponent/banner/Banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/banner/Banner.css -------------------------------------------------------------------------------- /src/components/homeComponent/banner/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/banner/Banner.jsx -------------------------------------------------------------------------------- /src/components/homeComponent/equipments/Equipments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/equipments/Equipments.css -------------------------------------------------------------------------------- /src/components/homeComponent/equipments/Equipments.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/equipments/Equipments.jsx -------------------------------------------------------------------------------- /src/components/homeComponent/services/Services.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/services/Services.css -------------------------------------------------------------------------------- /src/components/homeComponent/services/Services.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/services/Services.jsx -------------------------------------------------------------------------------- /src/components/homeComponent/stats/Stats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/stats/Stats.css -------------------------------------------------------------------------------- /src/components/homeComponent/stats/Stats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/stats/Stats.jsx -------------------------------------------------------------------------------- /src/components/homeComponent/support/Support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/support/Support.css -------------------------------------------------------------------------------- /src/components/homeComponent/support/Support.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/support/Support.jsx -------------------------------------------------------------------------------- /src/components/homeComponent/workflow/Workflow.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/homeComponent/workflow/Workflow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/homeComponent/workflow/Workflow.jsx -------------------------------------------------------------------------------- /src/components/input/InputField.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/input/InputField.css -------------------------------------------------------------------------------- /src/components/input/InputField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/input/InputField.jsx -------------------------------------------------------------------------------- /src/components/loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/loader/index.js -------------------------------------------------------------------------------- /src/components/preheader/PreHeader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/preheader/PreHeader.css -------------------------------------------------------------------------------- /src/components/preheader/PreHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/preheader/PreHeader.jsx -------------------------------------------------------------------------------- /src/components/verify-otp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/components/verify-otp/index.js -------------------------------------------------------------------------------- /src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/firebase.js -------------------------------------------------------------------------------- /src/img/Accepted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/Accepted.png -------------------------------------------------------------------------------- /src/img/Ellipse64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/Ellipse64.png -------------------------------------------------------------------------------- /src/img/Frame3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/Frame3.png -------------------------------------------------------------------------------- /src/img/Progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/Progress.png -------------------------------------------------------------------------------- /src/img/Rectangle73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/Rectangle73.png -------------------------------------------------------------------------------- /src/img/Rejected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/Rejected.png -------------------------------------------------------------------------------- /src/img/Slider3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/Slider3.webp -------------------------------------------------------------------------------- /src/img/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/Vector.png -------------------------------------------------------------------------------- /src/img/Vector1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/Vector1.png -------------------------------------------------------------------------------- /src/img/Vector2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/Vector2.png -------------------------------------------------------------------------------- /src/img/completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/completed.png -------------------------------------------------------------------------------- /src/img/cross_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/cross_black.svg -------------------------------------------------------------------------------- /src/img/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/down-arrow.svg -------------------------------------------------------------------------------- /src/img/footerBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/footerBg.png -------------------------------------------------------------------------------- /src/img/home1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/home1.webp -------------------------------------------------------------------------------- /src/img/item1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/item1.png -------------------------------------------------------------------------------- /src/img/item2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/item2.png -------------------------------------------------------------------------------- /src/img/login_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/login_img.jpg -------------------------------------------------------------------------------- /src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/logo.png -------------------------------------------------------------------------------- /src/img/logo_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/logo_svg.svg -------------------------------------------------------------------------------- /src/img/mobileServ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/mobileServ.png -------------------------------------------------------------------------------- /src/img/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/people.svg -------------------------------------------------------------------------------- /src/img/people1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/people1.svg -------------------------------------------------------------------------------- /src/img/services4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/services4.png -------------------------------------------------------------------------------- /src/img/signup_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/signup_img.jpg -------------------------------------------------------------------------------- /src/img/slider2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/slider2.webp -------------------------------------------------------------------------------- /src/img/user_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/user_icon.svg -------------------------------------------------------------------------------- /src/img/vector11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/vector11.svg -------------------------------------------------------------------------------- /src/img/vector22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/vector22.svg -------------------------------------------------------------------------------- /src/img/vector33.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/vector33.svg -------------------------------------------------------------------------------- /src/img/videoPic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/img/videoPic.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/ContactUs/ContactUs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/ContactUs/ContactUs.css -------------------------------------------------------------------------------- /src/pages/ContactUs/ContactUs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/ContactUs/ContactUs.jsx -------------------------------------------------------------------------------- /src/pages/EquipmentReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/EquipmentReport.js -------------------------------------------------------------------------------- /src/pages/FAQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/FAQ.js -------------------------------------------------------------------------------- /src/pages/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/Help.js -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/Login.js -------------------------------------------------------------------------------- /src/pages/PartnerDispute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/PartnerDispute.js -------------------------------------------------------------------------------- /src/pages/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/Register.js -------------------------------------------------------------------------------- /src/pages/addProduct/AddProduct.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/addProduct/AddProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/addProduct/AddProduct.jsx -------------------------------------------------------------------------------- /src/pages/bookingHistory/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/bookingHistory/data.js -------------------------------------------------------------------------------- /src/pages/bookingHistory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/bookingHistory/index.js -------------------------------------------------------------------------------- /src/pages/bookingRequest/BookingRequest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/bookingRequest/BookingRequest.css -------------------------------------------------------------------------------- /src/pages/bookingRequest/BookingRequest.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/bookingRequest/BookingRequest.jsx -------------------------------------------------------------------------------- /src/pages/cancellationPage/CancellationPolicy.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/cancellationPage/CancellationPolicy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/cancellationPage/CancellationPolicy.jsx -------------------------------------------------------------------------------- /src/pages/chat/Chat.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/chat/Chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/chat/Chat.jsx -------------------------------------------------------------------------------- /src/pages/dashboard/Dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/dashboard/Dashboard.css -------------------------------------------------------------------------------- /src/pages/dashboard/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/dashboard/Dashboard.jsx -------------------------------------------------------------------------------- /src/pages/feedback/Feedback.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/feedback/Feedback.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/feedback/Feedback.jsx -------------------------------------------------------------------------------- /src/pages/product/Product.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/product/Product.css -------------------------------------------------------------------------------- /src/pages/product/Product.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/product/Product.jsx -------------------------------------------------------------------------------- /src/pages/updateProfile/UpdateForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/updateProfile/UpdateForm.js -------------------------------------------------------------------------------- /src/pages/updateProfile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/pages/updateProfile/index.js -------------------------------------------------------------------------------- /src/redux/actions/equipActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/redux/actions/equipActions.js -------------------------------------------------------------------------------- /src/redux/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/redux/actions/index.js -------------------------------------------------------------------------------- /src/redux/constants/equipConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/redux/constants/equipConstants.js -------------------------------------------------------------------------------- /src/redux/reducers/authReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/redux/reducers/authReducer.js -------------------------------------------------------------------------------- /src/redux/reducers/equipReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/redux/reducers/equipReducers.js -------------------------------------------------------------------------------- /src/redux/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/redux/reducers/index.js -------------------------------------------------------------------------------- /src/redux/reducers/tokenReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/redux/reducers/tokenReducer.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/utils/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/src/utils/validation.js -------------------------------------------------------------------------------- /src/utils/verify-otp.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudrakshi99/SIH2022/HEAD/yarn.lock --------------------------------------------------------------------------------