├── .DS_Store ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── docs.yml │ └── feature.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .vscode └── launch.json ├── Blogs.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── Readme.md ├── assets ├── devServerScreenshot.jpg └── nomise-logo.png ├── config.env ├── contributing.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.js ├── public ├── NOMISE.gif ├── index.html └── vite.svg ├── src ├── components │ ├── Logo.tsx │ ├── PageNotFound.css │ ├── PageNotFound.tsx │ ├── ProductCard.css │ └── ProductCard.tsx ├── features │ ├── authentication │ │ ├── components │ │ │ ├── Login.tsx │ │ │ └── SignUp.tsx │ │ └── services │ │ │ └── LoginSignupService.ts │ ├── cart │ │ ├── components │ │ │ ├── Cart.css │ │ │ └── Cart.tsx │ │ ├── repository │ │ │ └── addedProducts.ts │ │ └── services │ │ │ ├── cartReducer.ts │ │ │ └── cartService.ts │ ├── product │ │ └── components │ │ │ ├── Product.tsx │ │ │ └── Specifications.tsx │ ├── products │ │ ├── components │ │ │ ├── Products.css │ │ │ └── Products.tsx │ │ ├── repository │ │ │ ├── filterTypes.ts │ │ │ └── sampleProducts.ts │ │ ├── services │ │ │ └── ProductService.ts │ │ └── utils │ │ │ ├── filterTypeSchema.ts │ │ │ └── productResponse.ts │ ├── ratings │ │ ├── components │ │ │ └── RatingStars.tsx │ │ └── services │ │ │ └── RatingService.ts │ ├── reviews │ │ ├── components │ │ │ ├── Reviews.css │ │ │ └── Reviews.tsx │ │ └── repository │ │ │ ├── reviews.ts │ │ │ └── reviewsResponse.ts │ └── search │ │ ├── components │ │ ├── SearchBar.css │ │ └── SearchBar.tsx │ │ └── services │ │ └── SearchService.ts ├── index.css ├── index.tsx ├── layouts │ ├── Footer.tsx │ ├── Navbar.css │ └── Navbar.tsx ├── pages │ ├── App.tsx │ ├── Homepage.tsx │ └── global.css ├── services │ ├── actionType.ts │ └── rootReducer.ts └── vite-env.d.ts ├── tailwind.config.js ├── tailwind.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/.github/ISSUE_TEMPLATE/docs.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Blogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/Blogs.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/Readme.md -------------------------------------------------------------------------------- /assets/devServerScreenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/assets/devServerScreenshot.jpg -------------------------------------------------------------------------------- /assets/nomise-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/assets/nomise-logo.png -------------------------------------------------------------------------------- /config.env: -------------------------------------------------------------------------------- 1 | keyid = rzp_test_HDjTiUM9CNObVn 2 | privatekey = cEUDsTfFj3kKibx7p3cSVEfM 3 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/contributing.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/NOMISE.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/public/NOMISE.gif -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/public/index.html -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/PageNotFound.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/components/PageNotFound.css -------------------------------------------------------------------------------- /src/components/PageNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/components/PageNotFound.tsx -------------------------------------------------------------------------------- /src/components/ProductCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/components/ProductCard.css -------------------------------------------------------------------------------- /src/components/ProductCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/components/ProductCard.tsx -------------------------------------------------------------------------------- /src/features/authentication/components/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/authentication/components/Login.tsx -------------------------------------------------------------------------------- /src/features/authentication/components/SignUp.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/features/authentication/services/LoginSignupService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/authentication/services/LoginSignupService.ts -------------------------------------------------------------------------------- /src/features/cart/components/Cart.css: -------------------------------------------------------------------------------- 1 | .cart-image{ 2 | height:40px; 3 | } -------------------------------------------------------------------------------- /src/features/cart/components/Cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/cart/components/Cart.tsx -------------------------------------------------------------------------------- /src/features/cart/repository/addedProducts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/cart/repository/addedProducts.ts -------------------------------------------------------------------------------- /src/features/cart/services/cartReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/cart/services/cartReducer.ts -------------------------------------------------------------------------------- /src/features/cart/services/cartService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/cart/services/cartService.ts -------------------------------------------------------------------------------- /src/features/product/components/Product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/product/components/Product.tsx -------------------------------------------------------------------------------- /src/features/product/components/Specifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/product/components/Specifications.tsx -------------------------------------------------------------------------------- /src/features/products/components/Products.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/products/components/Products.css -------------------------------------------------------------------------------- /src/features/products/components/Products.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/products/components/Products.tsx -------------------------------------------------------------------------------- /src/features/products/repository/filterTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/products/repository/filterTypes.ts -------------------------------------------------------------------------------- /src/features/products/repository/sampleProducts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/products/repository/sampleProducts.ts -------------------------------------------------------------------------------- /src/features/products/services/ProductService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/products/services/ProductService.ts -------------------------------------------------------------------------------- /src/features/products/utils/filterTypeSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/products/utils/filterTypeSchema.ts -------------------------------------------------------------------------------- /src/features/products/utils/productResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/products/utils/productResponse.ts -------------------------------------------------------------------------------- /src/features/ratings/components/RatingStars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/ratings/components/RatingStars.tsx -------------------------------------------------------------------------------- /src/features/ratings/services/RatingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/ratings/services/RatingService.ts -------------------------------------------------------------------------------- /src/features/reviews/components/Reviews.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/features/reviews/components/Reviews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/reviews/components/Reviews.tsx -------------------------------------------------------------------------------- /src/features/reviews/repository/reviews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/reviews/repository/reviews.ts -------------------------------------------------------------------------------- /src/features/reviews/repository/reviewsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/reviews/repository/reviewsResponse.ts -------------------------------------------------------------------------------- /src/features/search/components/SearchBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/search/components/SearchBar.css -------------------------------------------------------------------------------- /src/features/search/components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/search/components/SearchBar.tsx -------------------------------------------------------------------------------- /src/features/search/services/SearchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/features/search/services/SearchService.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/layouts/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/layouts/Footer.tsx -------------------------------------------------------------------------------- /src/layouts/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/layouts/Navbar.css -------------------------------------------------------------------------------- /src/layouts/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/layouts/Navbar.tsx -------------------------------------------------------------------------------- /src/pages/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/pages/App.tsx -------------------------------------------------------------------------------- /src/pages/Homepage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/pages/Homepage.tsx -------------------------------------------------------------------------------- /src/pages/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/pages/global.css -------------------------------------------------------------------------------- /src/services/actionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/services/actionType.ts -------------------------------------------------------------------------------- /src/services/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/src/services/rootReducer.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tailwind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/tailwind.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlphaDecodeX/NoMise_Store/HEAD/vite.config.ts --------------------------------------------------------------------------------