├── .gitignore ├── LICENSE ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── icons │ ├── Visa.svg │ ├── applePay.svg │ ├── arrowLeft.svg │ ├── arrowRight.svg │ ├── big-star.svg │ ├── calvin-klein-logo.svg │ ├── cart.svg │ ├── check.svg │ ├── circleCheck.svg │ ├── dotsHorizontal.svg │ ├── envelope.svg │ ├── facebook.svg │ ├── github.svg │ ├── googlePay.svg │ ├── gucci-logo.svg │ ├── instagram.svg │ ├── keyboardArrowDown.svg │ ├── keyboardArrowRight.svg │ ├── mastercard.svg │ ├── menu.svg │ ├── minus.svg │ ├── outlineOffer.svg │ ├── paypal.svg │ ├── plus.svg │ ├── prada-logo.svg │ ├── search-black.svg │ ├── search.svg │ ├── small-star.svg │ ├── times.svg │ ├── trash.svg │ ├── user.svg │ ├── versace-logo.svg │ ├── verticalSlider.svg │ ├── xTwitter.svg │ └── zara-logo.svg ├── images │ ├── dress-style-1.png │ ├── dress-style-2.png │ ├── dress-style-3.png │ ├── dress-style-4.png │ ├── header-homepage.png │ ├── header-res-homepage.png │ ├── pic1.png │ ├── pic10.png │ ├── pic11.png │ ├── pic12.png │ ├── pic13.png │ ├── pic14.png │ ├── pic15.png │ ├── pic2.png │ ├── pic3.png │ ├── pic4.png │ ├── pic5.png │ ├── pic6.png │ ├── pic7.png │ ├── pic8.png │ └── pic9.png ├── next.svg └── vercel.svg ├── src ├── app │ ├── cart │ │ └── page.tsx │ ├── favicon.ico │ ├── layout.tsx │ ├── page.tsx │ ├── providers.tsx │ └── shop │ │ ├── page.tsx │ │ └── product │ │ └── [...slug] │ │ └── page.tsx ├── components │ ├── cart-page │ │ ├── BreadcrumbCart.tsx │ │ └── ProductCard.tsx │ ├── common │ │ ├── ProductCard.tsx │ │ ├── ProductListSec.tsx │ │ └── ReviewCard.tsx │ ├── homepage │ │ ├── Brands │ │ │ └── index.tsx │ │ ├── DressStyle │ │ │ ├── DressStyleCard.tsx │ │ │ └── index.tsx │ │ ├── Header │ │ │ └── index.tsx │ │ └── Reviews │ │ │ └── index.tsx │ ├── layout │ │ ├── Banner │ │ │ └── TopBanner.tsx │ │ ├── Footer │ │ │ ├── LayoutSpacing.tsx │ │ │ ├── LinksSection.tsx │ │ │ ├── NewsLetterSection.tsx │ │ │ ├── footer.types.ts │ │ │ └── index.tsx │ │ └── Navbar │ │ │ ├── TopNavbar │ │ │ ├── CartBtn.tsx │ │ │ ├── MenuItem.tsx │ │ │ ├── MenuList.tsx │ │ │ ├── ResTopNavbar.tsx │ │ │ └── index.tsx │ │ │ └── navbar.types.ts │ ├── product-page │ │ ├── BreadcrumbProduct.tsx │ │ ├── Header │ │ │ ├── AddToCardSection.tsx │ │ │ ├── AddToCartBtn.tsx │ │ │ ├── ColorSelection.tsx │ │ │ ├── PhotoSection.tsx │ │ │ ├── SizeSelection.tsx │ │ │ └── index.tsx │ │ └── Tabs │ │ │ ├── FaqContent.tsx │ │ │ ├── ProductDetails.tsx │ │ │ ├── ProductDetailsContent.tsx │ │ │ ├── ReviewsContent.tsx │ │ │ └── index.tsx │ ├── shop-page │ │ ├── BreadcrumbShop.tsx │ │ └── filters │ │ │ ├── CategoriesSection.tsx │ │ │ ├── ColorsSection.tsx │ │ │ ├── DressStyleSection.tsx │ │ │ ├── MobileFilters.tsx │ │ │ ├── PriceSection.tsx │ │ │ ├── SizeSection.tsx │ │ │ └── index.tsx │ ├── storage │ │ └── index.tsx │ └── ui │ │ ├── AnimatedCounter.tsx │ │ ├── CartCounter.tsx │ │ ├── Rating.tsx │ │ ├── SpinnerbLoader │ │ ├── SpinnerbLoader.module.css │ │ └── index.tsx │ │ ├── accordion.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── carousel.tsx │ │ ├── drawer.tsx │ │ ├── input-group.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── slider copy.tsx │ │ └── slider.tsx ├── lib │ ├── features │ │ ├── carts │ │ │ └── cartsSlice.ts │ │ └── products │ │ │ └── productsSlice.ts │ ├── hooks │ │ └── redux.tsx │ ├── store.ts │ └── utils.ts ├── styles │ ├── fonts │ │ ├── Satoshi-Bold.eot │ │ ├── Satoshi-Bold.ttf │ │ ├── Satoshi-Bold.woff │ │ ├── Satoshi-Bold.woff2 │ │ ├── Satoshi-Medium.eot │ │ ├── Satoshi-Medium.ttf │ │ ├── Satoshi-Medium.woff │ │ ├── Satoshi-Medium.woff2 │ │ ├── Satoshi-Regular.eot │ │ ├── Satoshi-Regular.ttf │ │ ├── Satoshi-Regular.woff │ │ ├── Satoshi-Regular.woff2 │ │ ├── index.ts │ │ ├── integralcf-bold.eot │ │ ├── integralcf-bold.ttf │ │ ├── integralcf-bold.woff │ │ └── integralcf-bold.woff2 │ └── globals.css └── types │ ├── product.types.ts │ └── review.types.ts ├── tailwind.config.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/icons/Visa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/Visa.svg -------------------------------------------------------------------------------- /public/icons/applePay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/applePay.svg -------------------------------------------------------------------------------- /public/icons/arrowLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/arrowLeft.svg -------------------------------------------------------------------------------- /public/icons/arrowRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/arrowRight.svg -------------------------------------------------------------------------------- /public/icons/big-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/big-star.svg -------------------------------------------------------------------------------- /public/icons/calvin-klein-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/calvin-klein-logo.svg -------------------------------------------------------------------------------- /public/icons/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/cart.svg -------------------------------------------------------------------------------- /public/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/check.svg -------------------------------------------------------------------------------- /public/icons/circleCheck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/circleCheck.svg -------------------------------------------------------------------------------- /public/icons/dotsHorizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/dotsHorizontal.svg -------------------------------------------------------------------------------- /public/icons/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/envelope.svg -------------------------------------------------------------------------------- /public/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/facebook.svg -------------------------------------------------------------------------------- /public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/github.svg -------------------------------------------------------------------------------- /public/icons/googlePay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/googlePay.svg -------------------------------------------------------------------------------- /public/icons/gucci-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/gucci-logo.svg -------------------------------------------------------------------------------- /public/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/instagram.svg -------------------------------------------------------------------------------- /public/icons/keyboardArrowDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/keyboardArrowDown.svg -------------------------------------------------------------------------------- /public/icons/keyboardArrowRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/keyboardArrowRight.svg -------------------------------------------------------------------------------- /public/icons/mastercard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/mastercard.svg -------------------------------------------------------------------------------- /public/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/menu.svg -------------------------------------------------------------------------------- /public/icons/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/minus.svg -------------------------------------------------------------------------------- /public/icons/outlineOffer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/outlineOffer.svg -------------------------------------------------------------------------------- /public/icons/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/paypal.svg -------------------------------------------------------------------------------- /public/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/plus.svg -------------------------------------------------------------------------------- /public/icons/prada-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/prada-logo.svg -------------------------------------------------------------------------------- /public/icons/search-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/search-black.svg -------------------------------------------------------------------------------- /public/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/search.svg -------------------------------------------------------------------------------- /public/icons/small-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/small-star.svg -------------------------------------------------------------------------------- /public/icons/times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/times.svg -------------------------------------------------------------------------------- /public/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/trash.svg -------------------------------------------------------------------------------- /public/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/user.svg -------------------------------------------------------------------------------- /public/icons/versace-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/versace-logo.svg -------------------------------------------------------------------------------- /public/icons/verticalSlider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/verticalSlider.svg -------------------------------------------------------------------------------- /public/icons/xTwitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/xTwitter.svg -------------------------------------------------------------------------------- /public/icons/zara-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/icons/zara-logo.svg -------------------------------------------------------------------------------- /public/images/dress-style-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/dress-style-1.png -------------------------------------------------------------------------------- /public/images/dress-style-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/dress-style-2.png -------------------------------------------------------------------------------- /public/images/dress-style-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/dress-style-3.png -------------------------------------------------------------------------------- /public/images/dress-style-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/dress-style-4.png -------------------------------------------------------------------------------- /public/images/header-homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/header-homepage.png -------------------------------------------------------------------------------- /public/images/header-res-homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/header-res-homepage.png -------------------------------------------------------------------------------- /public/images/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic1.png -------------------------------------------------------------------------------- /public/images/pic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic10.png -------------------------------------------------------------------------------- /public/images/pic11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic11.png -------------------------------------------------------------------------------- /public/images/pic12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic12.png -------------------------------------------------------------------------------- /public/images/pic13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic13.png -------------------------------------------------------------------------------- /public/images/pic14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic14.png -------------------------------------------------------------------------------- /public/images/pic15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic15.png -------------------------------------------------------------------------------- /public/images/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic2.png -------------------------------------------------------------------------------- /public/images/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic3.png -------------------------------------------------------------------------------- /public/images/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic4.png -------------------------------------------------------------------------------- /public/images/pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic5.png -------------------------------------------------------------------------------- /public/images/pic6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic6.png -------------------------------------------------------------------------------- /public/images/pic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic7.png -------------------------------------------------------------------------------- /public/images/pic8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic8.png -------------------------------------------------------------------------------- /public/images/pic9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/images/pic9.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/cart/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/app/cart/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/app/shop/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/app/shop/page.tsx -------------------------------------------------------------------------------- /src/app/shop/product/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/app/shop/product/[...slug]/page.tsx -------------------------------------------------------------------------------- /src/components/cart-page/BreadcrumbCart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/cart-page/BreadcrumbCart.tsx -------------------------------------------------------------------------------- /src/components/cart-page/ProductCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/cart-page/ProductCard.tsx -------------------------------------------------------------------------------- /src/components/common/ProductCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/common/ProductCard.tsx -------------------------------------------------------------------------------- /src/components/common/ProductListSec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/common/ProductListSec.tsx -------------------------------------------------------------------------------- /src/components/common/ReviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/common/ReviewCard.tsx -------------------------------------------------------------------------------- /src/components/homepage/Brands/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/homepage/Brands/index.tsx -------------------------------------------------------------------------------- /src/components/homepage/DressStyle/DressStyleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/homepage/DressStyle/DressStyleCard.tsx -------------------------------------------------------------------------------- /src/components/homepage/DressStyle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/homepage/DressStyle/index.tsx -------------------------------------------------------------------------------- /src/components/homepage/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/homepage/Header/index.tsx -------------------------------------------------------------------------------- /src/components/homepage/Reviews/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/homepage/Reviews/index.tsx -------------------------------------------------------------------------------- /src/components/layout/Banner/TopBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Banner/TopBanner.tsx -------------------------------------------------------------------------------- /src/components/layout/Footer/LayoutSpacing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Footer/LayoutSpacing.tsx -------------------------------------------------------------------------------- /src/components/layout/Footer/LinksSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Footer/LinksSection.tsx -------------------------------------------------------------------------------- /src/components/layout/Footer/NewsLetterSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Footer/NewsLetterSection.tsx -------------------------------------------------------------------------------- /src/components/layout/Footer/footer.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Footer/footer.types.ts -------------------------------------------------------------------------------- /src/components/layout/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/layout/Navbar/TopNavbar/CartBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Navbar/TopNavbar/CartBtn.tsx -------------------------------------------------------------------------------- /src/components/layout/Navbar/TopNavbar/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Navbar/TopNavbar/MenuItem.tsx -------------------------------------------------------------------------------- /src/components/layout/Navbar/TopNavbar/MenuList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Navbar/TopNavbar/MenuList.tsx -------------------------------------------------------------------------------- /src/components/layout/Navbar/TopNavbar/ResTopNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Navbar/TopNavbar/ResTopNavbar.tsx -------------------------------------------------------------------------------- /src/components/layout/Navbar/TopNavbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Navbar/TopNavbar/index.tsx -------------------------------------------------------------------------------- /src/components/layout/Navbar/navbar.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/layout/Navbar/navbar.types.ts -------------------------------------------------------------------------------- /src/components/product-page/BreadcrumbProduct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/BreadcrumbProduct.tsx -------------------------------------------------------------------------------- /src/components/product-page/Header/AddToCardSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/Header/AddToCardSection.tsx -------------------------------------------------------------------------------- /src/components/product-page/Header/AddToCartBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/Header/AddToCartBtn.tsx -------------------------------------------------------------------------------- /src/components/product-page/Header/ColorSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/Header/ColorSelection.tsx -------------------------------------------------------------------------------- /src/components/product-page/Header/PhotoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/Header/PhotoSection.tsx -------------------------------------------------------------------------------- /src/components/product-page/Header/SizeSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/Header/SizeSelection.tsx -------------------------------------------------------------------------------- /src/components/product-page/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/Header/index.tsx -------------------------------------------------------------------------------- /src/components/product-page/Tabs/FaqContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/Tabs/FaqContent.tsx -------------------------------------------------------------------------------- /src/components/product-page/Tabs/ProductDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/Tabs/ProductDetails.tsx -------------------------------------------------------------------------------- /src/components/product-page/Tabs/ProductDetailsContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/Tabs/ProductDetailsContent.tsx -------------------------------------------------------------------------------- /src/components/product-page/Tabs/ReviewsContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/Tabs/ReviewsContent.tsx -------------------------------------------------------------------------------- /src/components/product-page/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/product-page/Tabs/index.tsx -------------------------------------------------------------------------------- /src/components/shop-page/BreadcrumbShop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/shop-page/BreadcrumbShop.tsx -------------------------------------------------------------------------------- /src/components/shop-page/filters/CategoriesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/shop-page/filters/CategoriesSection.tsx -------------------------------------------------------------------------------- /src/components/shop-page/filters/ColorsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/shop-page/filters/ColorsSection.tsx -------------------------------------------------------------------------------- /src/components/shop-page/filters/DressStyleSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/shop-page/filters/DressStyleSection.tsx -------------------------------------------------------------------------------- /src/components/shop-page/filters/MobileFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/shop-page/filters/MobileFilters.tsx -------------------------------------------------------------------------------- /src/components/shop-page/filters/PriceSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/shop-page/filters/PriceSection.tsx -------------------------------------------------------------------------------- /src/components/shop-page/filters/SizeSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/shop-page/filters/SizeSection.tsx -------------------------------------------------------------------------------- /src/components/shop-page/filters/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/shop-page/filters/index.tsx -------------------------------------------------------------------------------- /src/components/storage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/storage/index.tsx -------------------------------------------------------------------------------- /src/components/ui/AnimatedCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/AnimatedCounter.tsx -------------------------------------------------------------------------------- /src/components/ui/CartCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/CartCounter.tsx -------------------------------------------------------------------------------- /src/components/ui/Rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/Rating.tsx -------------------------------------------------------------------------------- /src/components/ui/SpinnerbLoader/SpinnerbLoader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/SpinnerbLoader/SpinnerbLoader.module.css -------------------------------------------------------------------------------- /src/components/ui/SpinnerbLoader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/SpinnerbLoader/index.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/input-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/input-group.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/slider copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/slider copy.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/lib/features/carts/cartsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/lib/features/carts/cartsSlice.ts -------------------------------------------------------------------------------- /src/lib/features/products/productsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/lib/features/products/productsSlice.ts -------------------------------------------------------------------------------- /src/lib/hooks/redux.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/lib/hooks/redux.tsx -------------------------------------------------------------------------------- /src/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/lib/store.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Bold.eot -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Bold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Bold.woff -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Bold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Medium.eot -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Medium.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Medium.woff -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Medium.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Regular.eot -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Regular.woff -------------------------------------------------------------------------------- /src/styles/fonts/Satoshi-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/Satoshi-Regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/index.ts -------------------------------------------------------------------------------- /src/styles/fonts/integralcf-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/integralcf-bold.eot -------------------------------------------------------------------------------- /src/styles/fonts/integralcf-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/integralcf-bold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/integralcf-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/integralcf-bold.woff -------------------------------------------------------------------------------- /src/styles/fonts/integralcf-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/fonts/integralcf-bold.woff2 -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/product.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/types/product.types.ts -------------------------------------------------------------------------------- /src/types/review.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/src/types/review.types.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadoftadeh/next-ecommerce-shopco/HEAD/tsconfig.json --------------------------------------------------------------------------------