├── .DS_Store ├── README.md ├── client ├── .env ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── netlify.toml ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── Bg.jpeg │ ├── Logo.jpg │ ├── Logo.svg │ ├── Logo.webp │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ ├── Bg.jpg │ │ ├── Bg.png │ │ ├── Booking.png │ │ ├── CheckoutBg.png │ │ ├── Logo.png │ │ ├── Wood.svg │ │ ├── newsletter.svg │ │ └── react.svg │ ├── components │ │ ├── checkout │ │ │ ├── ProductCard.jsx │ │ │ └── userinfo.jsx │ │ ├── landing-c │ │ │ ├── Button.jsx │ │ │ ├── Head.jsx │ │ │ ├── booking.jsx │ │ │ └── newsletter.jsx │ │ ├── main │ │ │ ├── Connector.jsx │ │ │ ├── DotLoading.jsx │ │ │ ├── Footer.jsx │ │ │ ├── login.css │ │ │ ├── login.jsx │ │ │ ├── logout.jsx │ │ │ ├── routes.jsx │ │ │ └── signup.jsx │ │ ├── product-c │ │ │ ├── description.jsx │ │ │ ├── quantity.jsx │ │ │ ├── service.jsx │ │ │ └── size.jsx │ │ └── store-c │ │ │ ├── CardBox.jsx │ │ │ ├── CartIcon.jsx │ │ │ ├── Navbar.jsx │ │ │ ├── card.jsx │ │ │ ├── cart.jsx │ │ │ └── filter.jsx │ ├── config │ │ ├── firebase.js │ │ ├── popup.jsx │ │ └── user.jsx │ ├── index.css │ ├── main.jsx │ ├── pages │ │ ├── Product.jsx │ │ ├── checkout.jsx │ │ ├── landing.jsx │ │ ├── paymentsuccess.jsx │ │ ├── store.jsx │ │ └── test.jsx │ └── util │ │ ├── Privaterout.jsx │ │ ├── filter.js │ │ └── validation.js ├── tailwind.config.js └── vite.config.js └── server ├── .gitignore ├── app.js ├── config └── razorpay.js ├── controllers ├── auth.controller.js ├── cart.controller.js ├── coffee.controller.js └── payment.controller.js ├── data.json ├── middleware └── middleware.js ├── model ├── cart.js ├── coffee.js └── user.js ├── package-lock.json ├── package.json ├── routes ├── auth.js ├── cart.js ├── coffee.js └── paymentroute.js └── vercel.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/README.md -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/.env -------------------------------------------------------------------------------- /client/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/.eslintrc.cjs -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/README.md -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/index.html -------------------------------------------------------------------------------- /client/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/netlify.toml -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/public/Bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/public/Bg.jpeg -------------------------------------------------------------------------------- /client/public/Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/public/Logo.jpg -------------------------------------------------------------------------------- /client/public/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/public/Logo.svg -------------------------------------------------------------------------------- /client/public/Logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/public/Logo.webp -------------------------------------------------------------------------------- /client/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/public/vite.svg -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/App.jsx -------------------------------------------------------------------------------- /client/src/assets/Bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/assets/Bg.jpg -------------------------------------------------------------------------------- /client/src/assets/Bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/assets/Bg.png -------------------------------------------------------------------------------- /client/src/assets/Booking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/assets/Booking.png -------------------------------------------------------------------------------- /client/src/assets/CheckoutBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/assets/CheckoutBg.png -------------------------------------------------------------------------------- /client/src/assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/assets/Logo.png -------------------------------------------------------------------------------- /client/src/assets/Wood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/assets/Wood.svg -------------------------------------------------------------------------------- /client/src/assets/newsletter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/assets/newsletter.svg -------------------------------------------------------------------------------- /client/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/assets/react.svg -------------------------------------------------------------------------------- /client/src/components/checkout/ProductCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/checkout/ProductCard.jsx -------------------------------------------------------------------------------- /client/src/components/checkout/userinfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/checkout/userinfo.jsx -------------------------------------------------------------------------------- /client/src/components/landing-c/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/landing-c/Button.jsx -------------------------------------------------------------------------------- /client/src/components/landing-c/Head.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/landing-c/Head.jsx -------------------------------------------------------------------------------- /client/src/components/landing-c/booking.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/landing-c/booking.jsx -------------------------------------------------------------------------------- /client/src/components/landing-c/newsletter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/landing-c/newsletter.jsx -------------------------------------------------------------------------------- /client/src/components/main/Connector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/main/Connector.jsx -------------------------------------------------------------------------------- /client/src/components/main/DotLoading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/main/DotLoading.jsx -------------------------------------------------------------------------------- /client/src/components/main/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/main/Footer.jsx -------------------------------------------------------------------------------- /client/src/components/main/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/main/login.css -------------------------------------------------------------------------------- /client/src/components/main/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/main/login.jsx -------------------------------------------------------------------------------- /client/src/components/main/logout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/main/logout.jsx -------------------------------------------------------------------------------- /client/src/components/main/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/main/routes.jsx -------------------------------------------------------------------------------- /client/src/components/main/signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/main/signup.jsx -------------------------------------------------------------------------------- /client/src/components/product-c/description.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/product-c/description.jsx -------------------------------------------------------------------------------- /client/src/components/product-c/quantity.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/product-c/quantity.jsx -------------------------------------------------------------------------------- /client/src/components/product-c/service.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/product-c/service.jsx -------------------------------------------------------------------------------- /client/src/components/product-c/size.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/product-c/size.jsx -------------------------------------------------------------------------------- /client/src/components/store-c/CardBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/store-c/CardBox.jsx -------------------------------------------------------------------------------- /client/src/components/store-c/CartIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/store-c/CartIcon.jsx -------------------------------------------------------------------------------- /client/src/components/store-c/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/store-c/Navbar.jsx -------------------------------------------------------------------------------- /client/src/components/store-c/card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/store-c/card.jsx -------------------------------------------------------------------------------- /client/src/components/store-c/cart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/store-c/cart.jsx -------------------------------------------------------------------------------- /client/src/components/store-c/filter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/components/store-c/filter.jsx -------------------------------------------------------------------------------- /client/src/config/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/config/firebase.js -------------------------------------------------------------------------------- /client/src/config/popup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/config/popup.jsx -------------------------------------------------------------------------------- /client/src/config/user.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/config/user.jsx -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/main.jsx -------------------------------------------------------------------------------- /client/src/pages/Product.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/pages/Product.jsx -------------------------------------------------------------------------------- /client/src/pages/checkout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/pages/checkout.jsx -------------------------------------------------------------------------------- /client/src/pages/landing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/pages/landing.jsx -------------------------------------------------------------------------------- /client/src/pages/paymentsuccess.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/pages/paymentsuccess.jsx -------------------------------------------------------------------------------- /client/src/pages/store.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/pages/store.jsx -------------------------------------------------------------------------------- /client/src/pages/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/pages/test.jsx -------------------------------------------------------------------------------- /client/src/util/Privaterout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/util/Privaterout.jsx -------------------------------------------------------------------------------- /client/src/util/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/util/filter.js -------------------------------------------------------------------------------- /client/src/util/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/src/util/validation.js -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /client/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/client/vite.config.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env 3 | pr.csv 4 | ``` -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/app.js -------------------------------------------------------------------------------- /server/config/razorpay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/config/razorpay.js -------------------------------------------------------------------------------- /server/controllers/auth.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/controllers/auth.controller.js -------------------------------------------------------------------------------- /server/controllers/cart.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/controllers/cart.controller.js -------------------------------------------------------------------------------- /server/controllers/coffee.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/controllers/coffee.controller.js -------------------------------------------------------------------------------- /server/controllers/payment.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/controllers/payment.controller.js -------------------------------------------------------------------------------- /server/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/data.json -------------------------------------------------------------------------------- /server/middleware/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/middleware/middleware.js -------------------------------------------------------------------------------- /server/model/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/model/cart.js -------------------------------------------------------------------------------- /server/model/coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/model/coffee.js -------------------------------------------------------------------------------- /server/model/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/model/user.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/package.json -------------------------------------------------------------------------------- /server/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/routes/auth.js -------------------------------------------------------------------------------- /server/routes/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/routes/cart.js -------------------------------------------------------------------------------- /server/routes/coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/routes/coffee.js -------------------------------------------------------------------------------- /server/routes/paymentroute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/routes/paymentroute.js -------------------------------------------------------------------------------- /server/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharadChauhan7/Coffee-Shop/HEAD/server/vercel.json --------------------------------------------------------------------------------