├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── components ├── CartPage │ ├── CartHeader.tsx │ ├── CartPage.tsx │ ├── Checkout.tsx │ ├── Empty.tsx │ ├── PaymentMethods.tsx │ └── Product.tsx ├── Footer.tsx ├── Header │ ├── AccountButtons.tsx │ ├── DeliveryTo.tsx │ ├── Header.tsx │ ├── HeaderBottom.tsx │ ├── Language.tsx │ ├── MenuSidebar.tsx │ └── Search.tsx ├── Home │ ├── CarouselContainer.tsx │ ├── CategoriesProduct │ │ ├── CategoriesProducts.tsx │ │ └── GridCategory.tsx │ ├── HomeProductSwiper.tsx │ └── productCard │ │ ├── ProductCard.tsx │ │ └── ProductSwiper.tsx ├── ProductPage │ ├── AccoridanProduct.tsx │ ├── BreadCrumb.tsx │ ├── Infos.tsx │ ├── InfosShipping.tsx │ ├── MainSwiper.tsx │ ├── ProductPage.tsx │ ├── SimilarSwiper.tsx │ ├── reviews │ │ ├── AddReview.tsx │ │ ├── Images.tsx │ │ ├── Pagination.ts │ │ ├── ReviewCard.tsx │ │ ├── Reviews.tsx │ │ ├── Select.tsx │ │ ├── Table.tsx │ │ ├── TableHeader.tsx │ │ └── TableSelect.tsx │ └── similarProducts.js ├── User │ ├── ButtonInput.tsx │ ├── ForgotPage.tsx │ ├── LoginInput.tsx │ ├── RegisterPage.tsx │ ├── ResetPage.tsx │ └── SignInPage.tsx ├── admin │ ├── categories │ │ └── CreateCategory.tsx │ ├── inputs │ │ ├── InputAdmin.tsx │ │ ├── MultipleSelectAdmin.tsx │ │ └── SelectInputAdmin.tsx │ ├── layout │ │ └── Layout.tsx │ ├── product │ │ ├── CreateProduct.tsx │ │ ├── clickToAdd │ │ │ ├── Details.tsx │ │ │ ├── Questions.tsx │ │ │ ├── Sizes.tsx │ │ │ └── size.js │ │ ├── colors │ │ │ └── colors.tsx │ │ ├── images │ │ │ └── ImagesProduct.tsx │ │ ├── index.tsx │ │ └── style │ │ │ └── Style.tsx │ ├── sidebar │ │ └── Sidebar.tsx │ └── subcategory │ │ └── CreateSubCategory.tsx ├── browse │ ├── brandsFilter │ │ └── BrandsFilter.tsx │ ├── categoriesFilter │ │ ├── CategoriesFilter.tsx │ │ └── ParentCategory.tsx │ ├── colorsFilter │ │ └── ColorsFilter.tsx │ ├── genderFilter │ │ └── GenderFilter.tsx │ ├── headingFilter │ │ └── HeadingFilter.tsx │ ├── materialsFilter │ │ └── MaterialsFilter.tsx │ ├── sizesFilter │ │ └── SizesFilter.tsx │ └── stylesFilter │ │ └── StylesFilter.tsx ├── checkoutPage │ ├── AddShipping.tsx │ ├── ListShipping.tsx │ ├── ShippingInput.tsx │ ├── ShippingPage.tsx │ ├── SingularSelect.tsx │ ├── Summary │ │ └── Summary.tsx │ ├── countries.js │ ├── payment │ │ ├── Payment.tsx │ │ └── paymentMethods.js │ └── product │ │ └── Product.tsx ├── dialogModal │ └── index.tsx ├── loaders │ └── dotLoader │ │ └── DotLoaderSpinner.tsx ├── order │ ├── OrderInfo.tsx │ ├── Payment.tsx │ ├── Product.tsx │ ├── Total.tsx │ └── UserInfo.tsx └── profile │ ├── layout │ └── Layout.tsx │ └── sidebar │ ├── Item.tsx │ ├── Sidebar.tsx │ ├── ordersLinks.js │ └── profile.js ├── emails ├── activateEmailTemplate.js └── passwordResetTemplate.js ├── middleware ├── auth.js ├── imgMiddleware.js └── middleware.js ├── models ├── Cart.js ├── Category.js ├── Coupon.js ├── Order.js ├── Product.js ├── SubCategory.js ├── User.js └── products.json ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── admin │ └── dashboard │ │ ├── categories.tsx │ │ ├── index.tsx │ │ ├── product │ │ ├── create.tsx │ │ └── index.tsx │ │ └── sub-categories.tsx ├── api │ ├── admin │ │ ├── category.js │ │ ├── product │ │ │ └── product.js │ │ └── subcategory.js │ ├── auth │ │ ├── [...nextauth].js │ │ ├── forgot.js │ │ ├── lib │ │ │ └── mongodb.ts │ │ ├── reset.js │ │ └── signup.js │ ├── cloudinary │ │ └── index.js │ ├── coupon │ │ └── index.js │ ├── hello.ts │ ├── order │ │ ├── create.js │ │ └── payment.js │ ├── product │ │ ├── [id].js │ │ └── [id] │ │ │ └── review.js │ └── user │ │ ├── applycoupon.js │ │ ├── changepassword.js │ │ ├── changepm.js │ │ ├── manageaddress.js │ │ ├── saveaddress.js │ │ ├── savecart.js │ │ ├── updatecart.js │ │ └── wishlist.js ├── auth │ ├── forgot.tsx │ ├── register.tsx │ ├── reset │ │ └── [token].tsx │ └── signin.tsx ├── browse.tsx ├── cart.tsx ├── checkout.tsx ├── index.tsx ├── order │ └── [id].tsx ├── product │ └── [slug].tsx └── profile │ ├── address.tsx │ ├── index.tsx │ ├── orders.tsx │ ├── payment.tsx │ └── security.tsx ├── postcss.config.js ├── public └── assets │ └── images │ ├── adidas.png │ ├── amazon-dark.png │ ├── amazon-logo.png │ ├── asics.png │ ├── auth0.png │ ├── buyer_protection.png │ ├── cash.png │ ├── credit_card.png │ ├── en-flag.png │ ├── facebook.png │ ├── fendi.png │ ├── fila.png │ ├── github.png │ ├── google.png │ ├── hoka.png │ ├── ikea.png │ ├── nike.png │ ├── no-image.png │ ├── payment_methods.png │ ├── paypal.png │ ├── puma.png │ ├── rolex.png │ ├── slider-1.jpg │ ├── slider-2.jpg │ ├── slider-3.jpg │ ├── slider-4.jpg │ ├── slider-5.jpg │ ├── twitter.png │ ├── user-image-default.jpg │ ├── zara.png │ └── zella.png ├── redux ├── hooks.ts ├── slices │ ├── CartSlice.ts │ ├── DialogSlice.ts │ └── MenuSlice.ts └── store.ts ├── request ├── upload.js └── users.js ├── styles └── globals.css ├── tailwind.config.js ├── tmp └── test.js ├── tsconfig.json └── utils ├── array_utils.js ├── dataURItoBlob.js ├── db.js ├── sendEmails.js ├── tokens.js └── validation.js /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/README.md -------------------------------------------------------------------------------- /components/CartPage/CartHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/CartPage/CartHeader.tsx -------------------------------------------------------------------------------- /components/CartPage/CartPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/CartPage/CartPage.tsx -------------------------------------------------------------------------------- /components/CartPage/Checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/CartPage/Checkout.tsx -------------------------------------------------------------------------------- /components/CartPage/Empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/CartPage/Empty.tsx -------------------------------------------------------------------------------- /components/CartPage/PaymentMethods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/CartPage/PaymentMethods.tsx -------------------------------------------------------------------------------- /components/CartPage/Product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/CartPage/Product.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/Header/AccountButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Header/AccountButtons.tsx -------------------------------------------------------------------------------- /components/Header/DeliveryTo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Header/DeliveryTo.tsx -------------------------------------------------------------------------------- /components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Header/Header.tsx -------------------------------------------------------------------------------- /components/Header/HeaderBottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Header/HeaderBottom.tsx -------------------------------------------------------------------------------- /components/Header/Language.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Header/Language.tsx -------------------------------------------------------------------------------- /components/Header/MenuSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Header/MenuSidebar.tsx -------------------------------------------------------------------------------- /components/Header/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Header/Search.tsx -------------------------------------------------------------------------------- /components/Home/CarouselContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Home/CarouselContainer.tsx -------------------------------------------------------------------------------- /components/Home/CategoriesProduct/CategoriesProducts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Home/CategoriesProduct/CategoriesProducts.tsx -------------------------------------------------------------------------------- /components/Home/CategoriesProduct/GridCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Home/CategoriesProduct/GridCategory.tsx -------------------------------------------------------------------------------- /components/Home/HomeProductSwiper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Home/HomeProductSwiper.tsx -------------------------------------------------------------------------------- /components/Home/productCard/ProductCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Home/productCard/ProductCard.tsx -------------------------------------------------------------------------------- /components/Home/productCard/ProductSwiper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/Home/productCard/ProductSwiper.tsx -------------------------------------------------------------------------------- /components/ProductPage/AccoridanProduct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/AccoridanProduct.tsx -------------------------------------------------------------------------------- /components/ProductPage/BreadCrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/BreadCrumb.tsx -------------------------------------------------------------------------------- /components/ProductPage/Infos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/Infos.tsx -------------------------------------------------------------------------------- /components/ProductPage/InfosShipping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/InfosShipping.tsx -------------------------------------------------------------------------------- /components/ProductPage/MainSwiper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/MainSwiper.tsx -------------------------------------------------------------------------------- /components/ProductPage/ProductPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/ProductPage.tsx -------------------------------------------------------------------------------- /components/ProductPage/SimilarSwiper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/SimilarSwiper.tsx -------------------------------------------------------------------------------- /components/ProductPage/reviews/AddReview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/reviews/AddReview.tsx -------------------------------------------------------------------------------- /components/ProductPage/reviews/Images.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/reviews/Images.tsx -------------------------------------------------------------------------------- /components/ProductPage/reviews/Pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/reviews/Pagination.ts -------------------------------------------------------------------------------- /components/ProductPage/reviews/ReviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/reviews/ReviewCard.tsx -------------------------------------------------------------------------------- /components/ProductPage/reviews/Reviews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/reviews/Reviews.tsx -------------------------------------------------------------------------------- /components/ProductPage/reviews/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/reviews/Select.tsx -------------------------------------------------------------------------------- /components/ProductPage/reviews/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/reviews/Table.tsx -------------------------------------------------------------------------------- /components/ProductPage/reviews/TableHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/reviews/TableHeader.tsx -------------------------------------------------------------------------------- /components/ProductPage/reviews/TableSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/reviews/TableSelect.tsx -------------------------------------------------------------------------------- /components/ProductPage/similarProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/ProductPage/similarProducts.js -------------------------------------------------------------------------------- /components/User/ButtonInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/User/ButtonInput.tsx -------------------------------------------------------------------------------- /components/User/ForgotPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/User/ForgotPage.tsx -------------------------------------------------------------------------------- /components/User/LoginInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/User/LoginInput.tsx -------------------------------------------------------------------------------- /components/User/RegisterPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/User/RegisterPage.tsx -------------------------------------------------------------------------------- /components/User/ResetPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/User/ResetPage.tsx -------------------------------------------------------------------------------- /components/User/SignInPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/User/SignInPage.tsx -------------------------------------------------------------------------------- /components/admin/categories/CreateCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/categories/CreateCategory.tsx -------------------------------------------------------------------------------- /components/admin/inputs/InputAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/inputs/InputAdmin.tsx -------------------------------------------------------------------------------- /components/admin/inputs/MultipleSelectAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/inputs/MultipleSelectAdmin.tsx -------------------------------------------------------------------------------- /components/admin/inputs/SelectInputAdmin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/inputs/SelectInputAdmin.tsx -------------------------------------------------------------------------------- /components/admin/layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/layout/Layout.tsx -------------------------------------------------------------------------------- /components/admin/product/CreateProduct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/product/CreateProduct.tsx -------------------------------------------------------------------------------- /components/admin/product/clickToAdd/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/product/clickToAdd/Details.tsx -------------------------------------------------------------------------------- /components/admin/product/clickToAdd/Questions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/product/clickToAdd/Questions.tsx -------------------------------------------------------------------------------- /components/admin/product/clickToAdd/Sizes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/product/clickToAdd/Sizes.tsx -------------------------------------------------------------------------------- /components/admin/product/clickToAdd/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/product/clickToAdd/size.js -------------------------------------------------------------------------------- /components/admin/product/colors/colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/product/colors/colors.tsx -------------------------------------------------------------------------------- /components/admin/product/images/ImagesProduct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/product/images/ImagesProduct.tsx -------------------------------------------------------------------------------- /components/admin/product/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/product/index.tsx -------------------------------------------------------------------------------- /components/admin/product/style/Style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/product/style/Style.tsx -------------------------------------------------------------------------------- /components/admin/sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /components/admin/subcategory/CreateSubCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/admin/subcategory/CreateSubCategory.tsx -------------------------------------------------------------------------------- /components/browse/brandsFilter/BrandsFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/browse/brandsFilter/BrandsFilter.tsx -------------------------------------------------------------------------------- /components/browse/categoriesFilter/CategoriesFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/browse/categoriesFilter/CategoriesFilter.tsx -------------------------------------------------------------------------------- /components/browse/categoriesFilter/ParentCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/browse/categoriesFilter/ParentCategory.tsx -------------------------------------------------------------------------------- /components/browse/colorsFilter/ColorsFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/browse/colorsFilter/ColorsFilter.tsx -------------------------------------------------------------------------------- /components/browse/genderFilter/GenderFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/browse/genderFilter/GenderFilter.tsx -------------------------------------------------------------------------------- /components/browse/headingFilter/HeadingFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/browse/headingFilter/HeadingFilter.tsx -------------------------------------------------------------------------------- /components/browse/materialsFilter/MaterialsFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/browse/materialsFilter/MaterialsFilter.tsx -------------------------------------------------------------------------------- /components/browse/sizesFilter/SizesFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/browse/sizesFilter/SizesFilter.tsx -------------------------------------------------------------------------------- /components/browse/stylesFilter/StylesFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/browse/stylesFilter/StylesFilter.tsx -------------------------------------------------------------------------------- /components/checkoutPage/AddShipping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/checkoutPage/AddShipping.tsx -------------------------------------------------------------------------------- /components/checkoutPage/ListShipping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/checkoutPage/ListShipping.tsx -------------------------------------------------------------------------------- /components/checkoutPage/ShippingInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/checkoutPage/ShippingInput.tsx -------------------------------------------------------------------------------- /components/checkoutPage/ShippingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/checkoutPage/ShippingPage.tsx -------------------------------------------------------------------------------- /components/checkoutPage/SingularSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/checkoutPage/SingularSelect.tsx -------------------------------------------------------------------------------- /components/checkoutPage/Summary/Summary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/checkoutPage/Summary/Summary.tsx -------------------------------------------------------------------------------- /components/checkoutPage/countries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/checkoutPage/countries.js -------------------------------------------------------------------------------- /components/checkoutPage/payment/Payment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/checkoutPage/payment/Payment.tsx -------------------------------------------------------------------------------- /components/checkoutPage/payment/paymentMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/checkoutPage/payment/paymentMethods.js -------------------------------------------------------------------------------- /components/checkoutPage/product/Product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/checkoutPage/product/Product.tsx -------------------------------------------------------------------------------- /components/dialogModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/dialogModal/index.tsx -------------------------------------------------------------------------------- /components/loaders/dotLoader/DotLoaderSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/loaders/dotLoader/DotLoaderSpinner.tsx -------------------------------------------------------------------------------- /components/order/OrderInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/order/OrderInfo.tsx -------------------------------------------------------------------------------- /components/order/Payment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/order/Payment.tsx -------------------------------------------------------------------------------- /components/order/Product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/order/Product.tsx -------------------------------------------------------------------------------- /components/order/Total.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/order/Total.tsx -------------------------------------------------------------------------------- /components/order/UserInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/order/UserInfo.tsx -------------------------------------------------------------------------------- /components/profile/layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/profile/layout/Layout.tsx -------------------------------------------------------------------------------- /components/profile/sidebar/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/profile/sidebar/Item.tsx -------------------------------------------------------------------------------- /components/profile/sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/profile/sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /components/profile/sidebar/ordersLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/profile/sidebar/ordersLinks.js -------------------------------------------------------------------------------- /components/profile/sidebar/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/components/profile/sidebar/profile.js -------------------------------------------------------------------------------- /emails/activateEmailTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/emails/activateEmailTemplate.js -------------------------------------------------------------------------------- /emails/passwordResetTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/emails/passwordResetTemplate.js -------------------------------------------------------------------------------- /middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/middleware/auth.js -------------------------------------------------------------------------------- /middleware/imgMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/middleware/imgMiddleware.js -------------------------------------------------------------------------------- /middleware/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/middleware/middleware.js -------------------------------------------------------------------------------- /models/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/models/Cart.js -------------------------------------------------------------------------------- /models/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/models/Category.js -------------------------------------------------------------------------------- /models/Coupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/models/Coupon.js -------------------------------------------------------------------------------- /models/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/models/Order.js -------------------------------------------------------------------------------- /models/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/models/Product.js -------------------------------------------------------------------------------- /models/SubCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/models/SubCategory.js -------------------------------------------------------------------------------- /models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/models/User.js -------------------------------------------------------------------------------- /models/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/models/products.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/admin/dashboard/categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/admin/dashboard/categories.tsx -------------------------------------------------------------------------------- /pages/admin/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/admin/dashboard/index.tsx -------------------------------------------------------------------------------- /pages/admin/dashboard/product/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/admin/dashboard/product/create.tsx -------------------------------------------------------------------------------- /pages/admin/dashboard/product/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/admin/dashboard/product/index.tsx -------------------------------------------------------------------------------- /pages/admin/dashboard/sub-categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/admin/dashboard/sub-categories.tsx -------------------------------------------------------------------------------- /pages/api/admin/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/admin/category.js -------------------------------------------------------------------------------- /pages/api/admin/product/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/admin/product/product.js -------------------------------------------------------------------------------- /pages/api/admin/subcategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/admin/subcategory.js -------------------------------------------------------------------------------- /pages/api/auth/[...nextauth].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/auth/[...nextauth].js -------------------------------------------------------------------------------- /pages/api/auth/forgot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/auth/forgot.js -------------------------------------------------------------------------------- /pages/api/auth/lib/mongodb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/auth/lib/mongodb.ts -------------------------------------------------------------------------------- /pages/api/auth/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/auth/reset.js -------------------------------------------------------------------------------- /pages/api/auth/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/auth/signup.js -------------------------------------------------------------------------------- /pages/api/cloudinary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/cloudinary/index.js -------------------------------------------------------------------------------- /pages/api/coupon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/coupon/index.js -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/api/order/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/order/create.js -------------------------------------------------------------------------------- /pages/api/order/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/order/payment.js -------------------------------------------------------------------------------- /pages/api/product/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/product/[id].js -------------------------------------------------------------------------------- /pages/api/product/[id]/review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/product/[id]/review.js -------------------------------------------------------------------------------- /pages/api/user/applycoupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/user/applycoupon.js -------------------------------------------------------------------------------- /pages/api/user/changepassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/user/changepassword.js -------------------------------------------------------------------------------- /pages/api/user/changepm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/user/changepm.js -------------------------------------------------------------------------------- /pages/api/user/manageaddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/user/manageaddress.js -------------------------------------------------------------------------------- /pages/api/user/saveaddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/user/saveaddress.js -------------------------------------------------------------------------------- /pages/api/user/savecart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/user/savecart.js -------------------------------------------------------------------------------- /pages/api/user/updatecart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/user/updatecart.js -------------------------------------------------------------------------------- /pages/api/user/wishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/api/user/wishlist.js -------------------------------------------------------------------------------- /pages/auth/forgot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/auth/forgot.tsx -------------------------------------------------------------------------------- /pages/auth/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/auth/register.tsx -------------------------------------------------------------------------------- /pages/auth/reset/[token].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/auth/reset/[token].tsx -------------------------------------------------------------------------------- /pages/auth/signin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/auth/signin.tsx -------------------------------------------------------------------------------- /pages/browse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/browse.tsx -------------------------------------------------------------------------------- /pages/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/cart.tsx -------------------------------------------------------------------------------- /pages/checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/checkout.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/order/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/order/[id].tsx -------------------------------------------------------------------------------- /pages/product/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/product/[slug].tsx -------------------------------------------------------------------------------- /pages/profile/address.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/profile/address.tsx -------------------------------------------------------------------------------- /pages/profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/profile/index.tsx -------------------------------------------------------------------------------- /pages/profile/orders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/profile/orders.tsx -------------------------------------------------------------------------------- /pages/profile/payment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/profile/payment.tsx -------------------------------------------------------------------------------- /pages/profile/security.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/pages/profile/security.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/images/adidas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/adidas.png -------------------------------------------------------------------------------- /public/assets/images/amazon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/amazon-dark.png -------------------------------------------------------------------------------- /public/assets/images/amazon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/amazon-logo.png -------------------------------------------------------------------------------- /public/assets/images/asics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/asics.png -------------------------------------------------------------------------------- /public/assets/images/auth0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/auth0.png -------------------------------------------------------------------------------- /public/assets/images/buyer_protection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/buyer_protection.png -------------------------------------------------------------------------------- /public/assets/images/cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/cash.png -------------------------------------------------------------------------------- /public/assets/images/credit_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/credit_card.png -------------------------------------------------------------------------------- /public/assets/images/en-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/en-flag.png -------------------------------------------------------------------------------- /public/assets/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/facebook.png -------------------------------------------------------------------------------- /public/assets/images/fendi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/fendi.png -------------------------------------------------------------------------------- /public/assets/images/fila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/fila.png -------------------------------------------------------------------------------- /public/assets/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/github.png -------------------------------------------------------------------------------- /public/assets/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/google.png -------------------------------------------------------------------------------- /public/assets/images/hoka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/hoka.png -------------------------------------------------------------------------------- /public/assets/images/ikea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/ikea.png -------------------------------------------------------------------------------- /public/assets/images/nike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/nike.png -------------------------------------------------------------------------------- /public/assets/images/no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/no-image.png -------------------------------------------------------------------------------- /public/assets/images/payment_methods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/payment_methods.png -------------------------------------------------------------------------------- /public/assets/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/paypal.png -------------------------------------------------------------------------------- /public/assets/images/puma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/puma.png -------------------------------------------------------------------------------- /public/assets/images/rolex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/rolex.png -------------------------------------------------------------------------------- /public/assets/images/slider-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/slider-1.jpg -------------------------------------------------------------------------------- /public/assets/images/slider-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/slider-2.jpg -------------------------------------------------------------------------------- /public/assets/images/slider-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/slider-3.jpg -------------------------------------------------------------------------------- /public/assets/images/slider-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/slider-4.jpg -------------------------------------------------------------------------------- /public/assets/images/slider-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/slider-5.jpg -------------------------------------------------------------------------------- /public/assets/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/twitter.png -------------------------------------------------------------------------------- /public/assets/images/user-image-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/user-image-default.jpg -------------------------------------------------------------------------------- /public/assets/images/zara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/zara.png -------------------------------------------------------------------------------- /public/assets/images/zella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/public/assets/images/zella.png -------------------------------------------------------------------------------- /redux/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/redux/hooks.ts -------------------------------------------------------------------------------- /redux/slices/CartSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/redux/slices/CartSlice.ts -------------------------------------------------------------------------------- /redux/slices/DialogSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/redux/slices/DialogSlice.ts -------------------------------------------------------------------------------- /redux/slices/MenuSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/redux/slices/MenuSlice.ts -------------------------------------------------------------------------------- /redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/redux/store.ts -------------------------------------------------------------------------------- /request/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/request/upload.js -------------------------------------------------------------------------------- /request/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/request/users.js -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tmp/test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/array_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/utils/array_utils.js -------------------------------------------------------------------------------- /utils/dataURItoBlob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/utils/dataURItoBlob.js -------------------------------------------------------------------------------- /utils/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/utils/db.js -------------------------------------------------------------------------------- /utils/sendEmails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/utils/sendEmails.js -------------------------------------------------------------------------------- /utils/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/utils/tokens.js -------------------------------------------------------------------------------- /utils/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/no2ehi/full-amazon-clone/HEAD/utils/validation.js --------------------------------------------------------------------------------