├── README.md ├── Samples ├── GoogleSignIn.PNG ├── HomePage1.PNG ├── HomePageSearch.PNG ├── ListOfBookings.PNG ├── StripePayment.PNG ├── bishire3.png ├── boardingDroppingSelect.PNG ├── bushire1.png ├── bushire2.png ├── bushire4.png ├── bushire5.png ├── listOfbuseswithfilters.PNG ├── listofBuses.PNG ├── myProfile.PNG ├── passengerDetailsForm.PNG ├── redbus Video.mp4 └── seatBookUi.PNG ├── back-end-redbus ├── .gitignore ├── app.js ├── config.env ├── controllers │ ├── booking.js │ ├── bookingHire.js │ ├── bus.js │ ├── busservice.js │ ├── customer.js │ └── route.js ├── models │ ├── bookingHire.js │ ├── boooking.js │ ├── bus.js │ ├── busService.js │ ├── busservice.js │ ├── customer.js │ └── route.js ├── package-lock.json ├── package.json ├── procfile └── routes │ ├── booking.js │ ├── bookinghire.js │ ├── bus.js │ ├── busservice.js │ ├── customer.js │ └── route.js └── front-end-redbus ├── .env ├── .gitignore ├── .netlify └── state.json ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── Components │ ├── Bus Booking Form │ │ ├── BusBookingForm.jsx │ │ └── BusBookingForm.module.css │ ├── Bus hire Main Page │ │ ├── Bus Hire Footer Section │ │ │ ├── BusHireFooter.jsx │ │ │ └── busHireFooter.module.css │ │ ├── Bus Hire Pricing │ │ │ ├── BusHirePricing.jsx │ │ │ └── BusHirePricing.module.css │ │ ├── Bus hire Form │ │ │ ├── BusHireForm.jsx │ │ │ └── BusHireForm.module.css │ │ ├── BusHire.jsx │ │ ├── BusHire.module.css │ │ ├── FAQ Section │ │ │ ├── FAQ.jsx │ │ │ └── FAQ.module.css │ │ ├── Sub Footer Section │ │ │ ├── SubFooter.jsx │ │ │ └── Subfooter.module.css │ │ └── Trip Type Container │ │ │ ├── TripTypeContainer.jsx │ │ │ └── TripTypeContainer.module.css │ ├── BusDetails │ │ ├── BottomTabs │ │ │ ├── BottomTabs.jsx │ │ │ └── BottomTabs.module.css │ │ ├── BusBox │ │ │ ├── BusBox.jsx │ │ │ └── BusBox.module.css │ │ ├── MainContainer │ │ │ ├── MainContainer.jsx │ │ │ └── MainContainer.module.css │ │ ├── SelectSubRoutes │ │ │ ├── SubRoutes.jsx │ │ │ └── SubRoutes.module.css │ │ ├── SortingBar │ │ │ ├── SortingBar.jsx │ │ │ └── SortingBar.module.css │ │ └── ViewSeats │ │ │ ├── FormDrawer.jsx │ │ │ ├── FormDrawer.module.css │ │ │ ├── SmallSeat.jsx │ │ │ ├── SmallSeat.module.css │ │ │ ├── ViewSeats.jsx │ │ │ └── ViewSeats.module.css │ ├── BusServiceSection │ │ ├── BusServiceCard │ │ │ ├── BusServiceCard.module.css │ │ │ └── BusServiceCardPage.jsx │ │ ├── BusServiceDetails │ │ │ ├── BusServiceDetailsPage.jsx │ │ │ └── BusServiceDetailsPage.module.css │ │ └── BusServicePayment │ │ │ ├── BusPayment.module.css │ │ │ └── BusServivePaymentPage.jsx │ ├── Error │ │ └── Error.jsx │ ├── LandingPage │ │ ├── Awards and Recognition │ │ │ ├── Awards.jsx │ │ │ └── Awards.module.css │ │ ├── Benefits │ │ │ ├── Services.jsx │ │ │ └── Services.module.css │ │ ├── BusTracker │ │ │ ├── BusTracker.jsx │ │ │ └── BusTracker.module.css │ │ ├── CouponSection │ │ │ ├── Coupon.jsx │ │ │ └── Coupon.module.css │ │ ├── Global Presence │ │ │ ├── GlobalPresence.jsx │ │ │ └── GlobalPresence.module.css │ │ ├── LandingPage.jsx │ │ ├── LandingPage.module.css │ │ ├── MobileLink │ │ │ ├── MobileApp.jsx │ │ │ └── MobileApp.module.css │ │ ├── Navbar │ │ │ ├── Navbar.jsx │ │ │ └── Navbar.module.css │ │ ├── RoutesModal.jsx │ │ ├── SafetySection │ │ │ ├── Safety.jsx │ │ │ └── Safety.module.css │ │ └── Title │ │ │ ├── Title.jsx │ │ │ └── Title.module.css │ ├── Navbar │ │ ├── Navbar.jsx │ │ └── Navbar.module.css │ ├── Payment Page │ │ ├── Payment.jsx │ │ └── Payment.module.css │ ├── Profile Page │ │ ├── HiredBuses.jsx │ │ ├── HiredBuses.module.css │ │ ├── MyTrips.jsx │ │ ├── MyTrips.module.css │ │ ├── Profile.jsx │ │ ├── Profile.module.css │ │ ├── SingleHiredBus.jsx │ │ ├── SingleHiredBus.module.css │ │ ├── SingleTrip.jsx │ │ └── SingleTrip.module.css │ └── SelectBus │ │ ├── Header.jsx │ │ ├── Header.module.css │ │ ├── Left.jsx │ │ ├── Left.module.css │ │ ├── Right.jsx │ │ ├── Right.module.css │ │ ├── SelectBus.jsx │ │ └── SelectBus.module.css ├── Elements │ └── ComingSoonModal.jsx ├── Redux │ ├── BookBus │ │ ├── action.js │ │ ├── actionTypes.js │ │ └── reducer.js │ ├── FilterAndSort │ │ ├── action.js │ │ ├── actionTypes.js │ │ └── reducer.js │ ├── auth │ │ ├── actionTypes.js │ │ ├── actions.js │ │ └── authReducer.js │ ├── busService │ │ ├── action.js │ │ ├── actionTypes.js │ │ └── busServicereducer.js │ ├── routes │ │ ├── action.js │ │ ├── actionTypes.js │ │ └── routesReducer.js │ └── store.js ├── Routes │ └── Routes.jsx ├── index.css └── index.js └── yarn.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/README.md -------------------------------------------------------------------------------- /Samples/GoogleSignIn.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/GoogleSignIn.PNG -------------------------------------------------------------------------------- /Samples/HomePage1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/HomePage1.PNG -------------------------------------------------------------------------------- /Samples/HomePageSearch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/HomePageSearch.PNG -------------------------------------------------------------------------------- /Samples/ListOfBookings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/ListOfBookings.PNG -------------------------------------------------------------------------------- /Samples/StripePayment.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/StripePayment.PNG -------------------------------------------------------------------------------- /Samples/bishire3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/bishire3.png -------------------------------------------------------------------------------- /Samples/boardingDroppingSelect.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/boardingDroppingSelect.PNG -------------------------------------------------------------------------------- /Samples/bushire1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/bushire1.png -------------------------------------------------------------------------------- /Samples/bushire2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/bushire2.png -------------------------------------------------------------------------------- /Samples/bushire4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/bushire4.png -------------------------------------------------------------------------------- /Samples/bushire5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/bushire5.png -------------------------------------------------------------------------------- /Samples/listOfbuseswithfilters.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/listOfbuseswithfilters.PNG -------------------------------------------------------------------------------- /Samples/listofBuses.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/listofBuses.PNG -------------------------------------------------------------------------------- /Samples/myProfile.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/myProfile.PNG -------------------------------------------------------------------------------- /Samples/passengerDetailsForm.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/passengerDetailsForm.PNG -------------------------------------------------------------------------------- /Samples/redbus Video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/redbus Video.mp4 -------------------------------------------------------------------------------- /Samples/seatBookUi.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/Samples/seatBookUi.PNG -------------------------------------------------------------------------------- /back-end-redbus/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /back-end-redbus/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/app.js -------------------------------------------------------------------------------- /back-end-redbus/config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/config.env -------------------------------------------------------------------------------- /back-end-redbus/controllers/booking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/controllers/booking.js -------------------------------------------------------------------------------- /back-end-redbus/controllers/bookingHire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/controllers/bookingHire.js -------------------------------------------------------------------------------- /back-end-redbus/controllers/bus.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /back-end-redbus/controllers/busservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/controllers/busservice.js -------------------------------------------------------------------------------- /back-end-redbus/controllers/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/controllers/customer.js -------------------------------------------------------------------------------- /back-end-redbus/controllers/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/controllers/route.js -------------------------------------------------------------------------------- /back-end-redbus/models/bookingHire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/models/bookingHire.js -------------------------------------------------------------------------------- /back-end-redbus/models/boooking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/models/boooking.js -------------------------------------------------------------------------------- /back-end-redbus/models/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/models/bus.js -------------------------------------------------------------------------------- /back-end-redbus/models/busService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/models/busService.js -------------------------------------------------------------------------------- /back-end-redbus/models/busservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/models/busservice.js -------------------------------------------------------------------------------- /back-end-redbus/models/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/models/customer.js -------------------------------------------------------------------------------- /back-end-redbus/models/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/models/route.js -------------------------------------------------------------------------------- /back-end-redbus/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/package-lock.json -------------------------------------------------------------------------------- /back-end-redbus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/package.json -------------------------------------------------------------------------------- /back-end-redbus/procfile: -------------------------------------------------------------------------------- 1 | web:node app.js -------------------------------------------------------------------------------- /back-end-redbus/routes/booking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/routes/booking.js -------------------------------------------------------------------------------- /back-end-redbus/routes/bookinghire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/routes/bookinghire.js -------------------------------------------------------------------------------- /back-end-redbus/routes/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/routes/bus.js -------------------------------------------------------------------------------- /back-end-redbus/routes/busservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/routes/busservice.js -------------------------------------------------------------------------------- /back-end-redbus/routes/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/routes/customer.js -------------------------------------------------------------------------------- /back-end-redbus/routes/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/back-end-redbus/routes/route.js -------------------------------------------------------------------------------- /front-end-redbus/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_BACKEND_URL=https://redbus-backend-udit.herokuapp.com 2 | -------------------------------------------------------------------------------- /front-end-redbus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/.gitignore -------------------------------------------------------------------------------- /front-end-redbus/.netlify/state.json: -------------------------------------------------------------------------------- 1 | { 2 | "siteId": "7d97688e-49e2-461f-81f4-415dd9637b67" 3 | } -------------------------------------------------------------------------------- /front-end-redbus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/README.md -------------------------------------------------------------------------------- /front-end-redbus/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/package-lock.json -------------------------------------------------------------------------------- /front-end-redbus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/package.json -------------------------------------------------------------------------------- /front-end-redbus/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/public/favicon.ico -------------------------------------------------------------------------------- /front-end-redbus/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/public/index.html -------------------------------------------------------------------------------- /front-end-redbus/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/public/logo.png -------------------------------------------------------------------------------- /front-end-redbus/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/public/manifest.json -------------------------------------------------------------------------------- /front-end-redbus/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/public/robots.txt -------------------------------------------------------------------------------- /front-end-redbus/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/App.js -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus Booking Form/BusBookingForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus Booking Form/BusBookingForm.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus Booking Form/BusBookingForm.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus Booking Form/BusBookingForm.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/Bus Hire Footer Section/BusHireFooter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/Bus Hire Footer Section/BusHireFooter.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/Bus Hire Footer Section/busHireFooter.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/Bus Hire Footer Section/busHireFooter.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/Bus Hire Pricing/BusHirePricing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/Bus Hire Pricing/BusHirePricing.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/Bus Hire Pricing/BusHirePricing.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/Bus Hire Pricing/BusHirePricing.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/Bus hire Form/BusHireForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/Bus hire Form/BusHireForm.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/Bus hire Form/BusHireForm.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/Bus hire Form/BusHireForm.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/BusHire.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/BusHire.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/BusHire.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/BusHire.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/FAQ Section/FAQ.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/FAQ Section/FAQ.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/FAQ Section/FAQ.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/FAQ Section/FAQ.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/Sub Footer Section/SubFooter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/Sub Footer Section/SubFooter.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/Sub Footer Section/Subfooter.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/Sub Footer Section/Subfooter.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/Trip Type Container/TripTypeContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/Trip Type Container/TripTypeContainer.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Bus hire Main Page/Trip Type Container/TripTypeContainer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Bus hire Main Page/Trip Type Container/TripTypeContainer.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/BottomTabs/BottomTabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/BottomTabs/BottomTabs.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/BottomTabs/BottomTabs.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/BottomTabs/BottomTabs.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/BusBox/BusBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/BusBox/BusBox.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/BusBox/BusBox.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/BusBox/BusBox.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/MainContainer/MainContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/MainContainer/MainContainer.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/MainContainer/MainContainer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/MainContainer/MainContainer.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/SelectSubRoutes/SubRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/SelectSubRoutes/SubRoutes.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/SelectSubRoutes/SubRoutes.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/SelectSubRoutes/SubRoutes.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/SortingBar/SortingBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/SortingBar/SortingBar.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/SortingBar/SortingBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/SortingBar/SortingBar.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/ViewSeats/FormDrawer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/ViewSeats/FormDrawer.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/ViewSeats/FormDrawer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/ViewSeats/FormDrawer.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/ViewSeats/SmallSeat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/ViewSeats/SmallSeat.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/ViewSeats/SmallSeat.module.css: -------------------------------------------------------------------------------- 1 | .mainContainer { 2 | cursor: pointer; 3 | } 4 | -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/ViewSeats/ViewSeats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/ViewSeats/ViewSeats.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusDetails/ViewSeats/ViewSeats.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusDetails/ViewSeats/ViewSeats.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusServiceSection/BusServiceCard/BusServiceCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusServiceSection/BusServiceCard/BusServiceCard.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusServiceSection/BusServiceCard/BusServiceCardPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusServiceSection/BusServiceCard/BusServiceCardPage.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusServiceSection/BusServiceDetails/BusServiceDetailsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusServiceSection/BusServiceDetails/BusServiceDetailsPage.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusServiceSection/BusServiceDetails/BusServiceDetailsPage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusServiceSection/BusServiceDetails/BusServiceDetailsPage.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusServiceSection/BusServicePayment/BusPayment.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusServiceSection/BusServicePayment/BusPayment.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/BusServiceSection/BusServicePayment/BusServivePaymentPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/BusServiceSection/BusServicePayment/BusServivePaymentPage.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Error/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Error/Error.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/Awards and Recognition/Awards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/Awards and Recognition/Awards.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/Awards and Recognition/Awards.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/Awards and Recognition/Awards.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/Benefits/Services.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/Benefits/Services.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/Benefits/Services.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/Benefits/Services.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/BusTracker/BusTracker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/BusTracker/BusTracker.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/BusTracker/BusTracker.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/BusTracker/BusTracker.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/CouponSection/Coupon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/CouponSection/Coupon.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/CouponSection/Coupon.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/CouponSection/Coupon.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/Global Presence/GlobalPresence.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/Global Presence/GlobalPresence.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/Global Presence/GlobalPresence.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/Global Presence/GlobalPresence.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/LandingPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/LandingPage.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/LandingPage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/LandingPage.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/MobileLink/MobileApp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/MobileLink/MobileApp.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/MobileLink/MobileApp.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/Navbar/Navbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/Navbar/Navbar.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/RoutesModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/RoutesModal.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/SafetySection/Safety.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/SafetySection/Safety.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/SafetySection/Safety.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/SafetySection/Safety.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/Title/Title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/Title/Title.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/LandingPage/Title/Title.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/LandingPage/Title/Title.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Navbar/Navbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Navbar/Navbar.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Payment Page/Payment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Payment Page/Payment.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Payment Page/Payment.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Payment Page/Payment.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Profile Page/HiredBuses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Profile Page/HiredBuses.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Profile Page/HiredBuses.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Profile Page/HiredBuses.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Profile Page/MyTrips.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Profile Page/MyTrips.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Profile Page/MyTrips.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Profile Page/MyTrips.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Profile Page/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Profile Page/Profile.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Profile Page/Profile.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Profile Page/Profile.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Profile Page/SingleHiredBus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Profile Page/SingleHiredBus.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Profile Page/SingleHiredBus.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Profile Page/SingleHiredBus.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Profile Page/SingleTrip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Profile Page/SingleTrip.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/Profile Page/SingleTrip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/Profile Page/SingleTrip.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/SelectBus/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/SelectBus/Header.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/SelectBus/Header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/SelectBus/Header.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/SelectBus/Left.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/SelectBus/Left.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/SelectBus/Left.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/SelectBus/Left.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Components/SelectBus/Right.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/SelectBus/Right.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/SelectBus/Right.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /front-end-redbus/src/Components/SelectBus/SelectBus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/SelectBus/SelectBus.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Components/SelectBus/SelectBus.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Components/SelectBus/SelectBus.module.css -------------------------------------------------------------------------------- /front-end-redbus/src/Elements/ComingSoonModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Elements/ComingSoonModal.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/BookBus/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/BookBus/action.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/BookBus/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/BookBus/actionTypes.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/BookBus/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/BookBus/reducer.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/FilterAndSort/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/FilterAndSort/action.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/FilterAndSort/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/FilterAndSort/actionTypes.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/FilterAndSort/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/FilterAndSort/reducer.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/auth/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/auth/actionTypes.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/auth/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/auth/actions.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/auth/authReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/auth/authReducer.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/busService/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/busService/action.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/busService/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/busService/actionTypes.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/busService/busServicereducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/busService/busServicereducer.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/routes/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/routes/action.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/routes/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/routes/actionTypes.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/routes/routesReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/routes/routesReducer.js -------------------------------------------------------------------------------- /front-end-redbus/src/Redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Redux/store.js -------------------------------------------------------------------------------- /front-end-redbus/src/Routes/Routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/Routes/Routes.jsx -------------------------------------------------------------------------------- /front-end-redbus/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/index.css -------------------------------------------------------------------------------- /front-end-redbus/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/src/index.js -------------------------------------------------------------------------------- /front-end-redbus/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitansh11/redbus/HEAD/front-end-redbus/yarn.lock --------------------------------------------------------------------------------