├── .env ├── .gitignore ├── README.md ├── Vercel.json ├── package.json ├── public ├── favicon.ico ├── index.css ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── server.js └── src ├── App.js ├── CSS ├── Corosal.css ├── HomeIcon.css ├── checkbox.css ├── menu.css ├── search.css ├── signin.css ├── signup.css └── team.css ├── Routes.js ├── admin ├── AddCategory.js ├── AddProduct.js ├── ManageCategory.js ├── ManageProducts.js ├── Orders.js ├── UpdateProduct.js ├── apiAdmin.js └── updateCategory.js ├── auth ├── AdminRoute.js ├── PrivateRoute.js └── index.js ├── config.js ├── core ├── About.js ├── Card.js ├── Cart.js ├── Checkbox.js ├── Checkout.js ├── Contact.js ├── Corosal.js ├── Footer1.js ├── FooterPage.js ├── Galleryimg.js ├── GalleryimgHome.js ├── Home.js ├── HomeIcon.js ├── Layout.js ├── Menu.js ├── Photos.js ├── Product.js ├── RadioBox.js ├── Search.js ├── Shop.js ├── ShowImage.js ├── StarRating.js ├── Team.js ├── apiCore.js ├── cartHelpers.js └── fixedPrices.js ├── image ├── about.jpg ├── about.png ├── desk.jpg ├── login │ ├── avatar.png │ ├── background.jpg │ └── side.jpg ├── resort1.jpg ├── resort2.jpg ├── resort3.jpg ├── resort4.jpg ├── resort5.jpg ├── resort6.jpg ├── signin.jpg ├── signup │ ├── background.jpg │ ├── bg2.jpeg │ └── signup.jpg └── team │ ├── bg.jpeg │ ├── img-top1.jpeg │ ├── img-top2.jpeg │ ├── img-top3.jpeg │ ├── img1.jpeg │ ├── img2.jpeg │ └── img3.jpeg ├── index.js ├── styles.css └── user ├── AdminDashboard.js ├── Profile.js ├── Signin.js ├── Signup.js ├── UserDashboard.js └── apiUser.js /.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_URL=http://localhost:5000/api/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/README.md -------------------------------------------------------------------------------- /Vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/Vercel.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/public/index.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/public/robots.txt -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/server.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/App.js -------------------------------------------------------------------------------- /src/CSS/Corosal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/CSS/Corosal.css -------------------------------------------------------------------------------- /src/CSS/HomeIcon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/CSS/HomeIcon.css -------------------------------------------------------------------------------- /src/CSS/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/CSS/checkbox.css -------------------------------------------------------------------------------- /src/CSS/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/CSS/menu.css -------------------------------------------------------------------------------- /src/CSS/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/CSS/search.css -------------------------------------------------------------------------------- /src/CSS/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/CSS/signin.css -------------------------------------------------------------------------------- /src/CSS/signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/CSS/signup.css -------------------------------------------------------------------------------- /src/CSS/team.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/CSS/team.css -------------------------------------------------------------------------------- /src/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/Routes.js -------------------------------------------------------------------------------- /src/admin/AddCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/admin/AddCategory.js -------------------------------------------------------------------------------- /src/admin/AddProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/admin/AddProduct.js -------------------------------------------------------------------------------- /src/admin/ManageCategory.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/admin/ManageProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/admin/ManageProducts.js -------------------------------------------------------------------------------- /src/admin/Orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/admin/Orders.js -------------------------------------------------------------------------------- /src/admin/UpdateProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/admin/UpdateProduct.js -------------------------------------------------------------------------------- /src/admin/apiAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/admin/apiAdmin.js -------------------------------------------------------------------------------- /src/admin/updateCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/admin/updateCategory.js -------------------------------------------------------------------------------- /src/auth/AdminRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/auth/AdminRoute.js -------------------------------------------------------------------------------- /src/auth/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/auth/PrivateRoute.js -------------------------------------------------------------------------------- /src/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/auth/index.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- 1 | export const API = process.env.REACT_APP_API_URL; -------------------------------------------------------------------------------- /src/core/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/About.js -------------------------------------------------------------------------------- /src/core/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Card.js -------------------------------------------------------------------------------- /src/core/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Cart.js -------------------------------------------------------------------------------- /src/core/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Checkbox.js -------------------------------------------------------------------------------- /src/core/Checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Checkout.js -------------------------------------------------------------------------------- /src/core/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Contact.js -------------------------------------------------------------------------------- /src/core/Corosal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Corosal.js -------------------------------------------------------------------------------- /src/core/Footer1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Footer1.js -------------------------------------------------------------------------------- /src/core/FooterPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/FooterPage.js -------------------------------------------------------------------------------- /src/core/Galleryimg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Galleryimg.js -------------------------------------------------------------------------------- /src/core/GalleryimgHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/GalleryimgHome.js -------------------------------------------------------------------------------- /src/core/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Home.js -------------------------------------------------------------------------------- /src/core/HomeIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/HomeIcon.js -------------------------------------------------------------------------------- /src/core/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Layout.js -------------------------------------------------------------------------------- /src/core/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Menu.js -------------------------------------------------------------------------------- /src/core/Photos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Photos.js -------------------------------------------------------------------------------- /src/core/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Product.js -------------------------------------------------------------------------------- /src/core/RadioBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/RadioBox.js -------------------------------------------------------------------------------- /src/core/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Search.js -------------------------------------------------------------------------------- /src/core/Shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Shop.js -------------------------------------------------------------------------------- /src/core/ShowImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/ShowImage.js -------------------------------------------------------------------------------- /src/core/StarRating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/StarRating.js -------------------------------------------------------------------------------- /src/core/Team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/Team.js -------------------------------------------------------------------------------- /src/core/apiCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/apiCore.js -------------------------------------------------------------------------------- /src/core/cartHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/cartHelpers.js -------------------------------------------------------------------------------- /src/core/fixedPrices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/core/fixedPrices.js -------------------------------------------------------------------------------- /src/image/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/about.jpg -------------------------------------------------------------------------------- /src/image/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/about.png -------------------------------------------------------------------------------- /src/image/desk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/desk.jpg -------------------------------------------------------------------------------- /src/image/login/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/login/avatar.png -------------------------------------------------------------------------------- /src/image/login/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/login/background.jpg -------------------------------------------------------------------------------- /src/image/login/side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/login/side.jpg -------------------------------------------------------------------------------- /src/image/resort1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/resort1.jpg -------------------------------------------------------------------------------- /src/image/resort2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/resort2.jpg -------------------------------------------------------------------------------- /src/image/resort3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/resort3.jpg -------------------------------------------------------------------------------- /src/image/resort4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/resort4.jpg -------------------------------------------------------------------------------- /src/image/resort5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/resort5.jpg -------------------------------------------------------------------------------- /src/image/resort6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/resort6.jpg -------------------------------------------------------------------------------- /src/image/signin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/signin.jpg -------------------------------------------------------------------------------- /src/image/signup/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/signup/background.jpg -------------------------------------------------------------------------------- /src/image/signup/bg2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/signup/bg2.jpeg -------------------------------------------------------------------------------- /src/image/signup/signup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/signup/signup.jpg -------------------------------------------------------------------------------- /src/image/team/bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/team/bg.jpeg -------------------------------------------------------------------------------- /src/image/team/img-top1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/team/img-top1.jpeg -------------------------------------------------------------------------------- /src/image/team/img-top2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/team/img-top2.jpeg -------------------------------------------------------------------------------- /src/image/team/img-top3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/team/img-top3.jpeg -------------------------------------------------------------------------------- /src/image/team/img1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/team/img1.jpeg -------------------------------------------------------------------------------- /src/image/team/img2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/team/img2.jpeg -------------------------------------------------------------------------------- /src/image/team/img3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/image/team/img3.jpeg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/user/AdminDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/user/AdminDashboard.js -------------------------------------------------------------------------------- /src/user/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/user/Profile.js -------------------------------------------------------------------------------- /src/user/Signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/user/Signin.js -------------------------------------------------------------------------------- /src/user/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/user/Signup.js -------------------------------------------------------------------------------- /src/user/UserDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/user/UserDashboard.js -------------------------------------------------------------------------------- /src/user/apiUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shsarv/TravelYaari-react/HEAD/src/user/apiUser.js --------------------------------------------------------------------------------