├── .eslintrc.json ├── .gitignore ├── README.md ├── jsconfig.json ├── next.config.js ├── package.json ├── public ├── assets │ ├── css │ │ ├── animate.css │ │ ├── flaticon_shofy.css │ │ └── font-awesome-pro.css │ ├── fonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-light-300.ttf │ │ ├── fa-light-300.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-thin-100.ttf │ │ ├── fa-thin-100.woff2 │ │ ├── fa-v4compatibility.ttf │ │ ├── fa-v4compatibility.woff2 │ │ ├── flaticon_shofy.eot │ │ ├── flaticon_shofy.ttf │ │ ├── flaticon_shofy.woff │ │ └── flaticon_shofy.woff2 │ ├── img │ │ ├── about │ │ │ ├── about-1.jpg │ │ │ └── about-2.jpg │ │ ├── banner │ │ │ ├── 2 │ │ │ │ ├── banner-1.jpg │ │ │ │ ├── banner-2.jpg │ │ │ │ └── banner-3.jpg │ │ │ ├── 4 │ │ │ │ ├── banner-1.jpg │ │ │ │ ├── banner-2.jpg │ │ │ │ ├── banner-3.jpg │ │ │ │ └── banner-4.jpg │ │ │ ├── 5 │ │ │ │ └── best-banner-1.jpg │ │ │ ├── banner-slider-1.png │ │ │ ├── banner-slider-2.png │ │ │ ├── banner-slider-3.png │ │ │ └── banner-slider-offer.png │ │ ├── blog │ │ │ ├── 2 │ │ │ │ ├── blog-1.jpg │ │ │ │ ├── blog-2.jpg │ │ │ │ └── blog-3.jpg │ │ │ ├── blog-1.jpg │ │ │ ├── blog-2.jpg │ │ │ ├── blog-3.jpg │ │ │ ├── blog-big-1.jpg │ │ │ ├── blog-big-2.jpg │ │ │ ├── blog-big-3.jpg │ │ │ ├── blog-big-4.jpg │ │ │ ├── blog-big-5.jpg │ │ │ ├── blog-big-6.jpg │ │ │ ├── details │ │ │ │ ├── blog-big-1.jpg │ │ │ │ ├── blog-details-sm-1.jpg │ │ │ │ └── shape │ │ │ │ │ ├── line.png │ │ │ │ │ └── quote.png │ │ │ ├── grid │ │ │ │ ├── blog-grid-1.jpg │ │ │ │ ├── blog-grid-2.jpg │ │ │ │ ├── blog-grid-3.jpg │ │ │ │ ├── blog-grid-4.jpg │ │ │ │ ├── blog-grid-5.jpg │ │ │ │ ├── blog-grid-6.jpg │ │ │ │ ├── blog-grid-7.jpg │ │ │ │ └── blog-grid-8.jpg │ │ │ ├── list │ │ │ │ ├── blog-list-1.jpg │ │ │ │ ├── blog-list-2.jpg │ │ │ │ ├── blog-list-3.jpg │ │ │ │ ├── blog-list-4.jpg │ │ │ │ ├── blog-list-5.jpg │ │ │ │ └── blog-list-6.jpg │ │ │ ├── sidebar │ │ │ │ ├── blog-sidebar-1.jpg │ │ │ │ ├── blog-sidebar-2.jpg │ │ │ │ └── blog-sidebar-3.jpg │ │ │ └── signature │ │ │ │ └── signature.png │ │ ├── brand │ │ │ ├── logo_01.png │ │ │ ├── logo_02.png │ │ │ ├── logo_03.png │ │ │ ├── logo_04.png │ │ │ └── logo_05.png │ │ ├── breadcrumb │ │ │ └── breadcrumb-bg-1.jpg │ │ ├── category │ │ │ ├── 3 │ │ │ │ ├── category-1.jpg │ │ │ │ ├── category-2.jpg │ │ │ │ ├── category-3.jpg │ │ │ │ └── category-4.jpg │ │ │ ├── 4 │ │ │ │ ├── bag.svg │ │ │ │ ├── category-1.jpg │ │ │ │ ├── category-2.jpg │ │ │ │ ├── category-3.jpg │ │ │ │ ├── category-4.jpg │ │ │ │ └── category-5.jpg │ │ │ ├── 5 │ │ │ │ ├── category-1.jpg │ │ │ │ ├── category-2.jpg │ │ │ │ ├── category-3.jpg │ │ │ │ ├── category-4.jpg │ │ │ │ ├── category-5.jpg │ │ │ │ └── category-6.jpg │ │ │ ├── category-1.jpg │ │ │ ├── category-2.jpg │ │ │ ├── category-3.jpg │ │ │ ├── category-4.jpg │ │ │ ├── category-5.jpg │ │ │ ├── category-6.jpg │ │ │ └── main │ │ │ │ ├── category-main-1.jpg │ │ │ │ ├── category-main-10.jpg │ │ │ │ ├── category-main-11.jpg │ │ │ │ ├── category-main-12.jpg │ │ │ │ ├── category-main-2.jpg │ │ │ │ ├── category-main-3.jpg │ │ │ │ ├── category-main-4.jpg │ │ │ │ ├── category-main-5.jpg │ │ │ │ ├── category-main-6.jpg │ │ │ │ ├── category-main-7.jpg │ │ │ │ ├── category-main-8.jpg │ │ │ │ └── category-main-9.jpg │ │ ├── contact │ │ │ ├── contact-icon-1.png │ │ │ ├── contact-icon-2.png │ │ │ └── contact-icon-3.png │ │ ├── cta │ │ │ ├── cta-thumb-1.jpg │ │ │ └── shape │ │ │ │ ├── cta-shape-1.png │ │ │ │ └── cta-shape-2.png │ │ ├── deal │ │ │ └── shape │ │ │ │ ├── shape-1.png │ │ │ │ ├── shape-2.png │ │ │ │ ├── shape-3.png │ │ │ │ ├── shape-4.png │ │ │ │ ├── shape-5.png │ │ │ │ ├── shape-6.png │ │ │ │ └── shape-7.png │ │ ├── error │ │ │ └── error.png │ │ ├── feature │ │ │ ├── features-icon-1.svg │ │ │ ├── features-icon-2.svg │ │ │ ├── features-icon-3.svg │ │ │ └── features-icon-4.svg │ │ ├── footer │ │ │ ├── footer-pay-2.png │ │ │ └── footer-pay.png │ │ ├── header │ │ │ ├── header-call.svg │ │ │ ├── header-cart.svg │ │ │ ├── header-cat-bar.svg │ │ │ ├── header-compare.svg │ │ │ ├── header-love.svg │ │ │ ├── header-search.svg │ │ │ ├── header-truck.svg │ │ │ ├── header-user.svg │ │ │ └── menu │ │ │ │ ├── grocery │ │ │ │ ├── img-1.png │ │ │ │ ├── img-2.png │ │ │ │ ├── img-3.png │ │ │ │ ├── img-4.png │ │ │ │ ├── img-5.png │ │ │ │ ├── img-6.png │ │ │ │ ├── menu-brand-1.png │ │ │ │ ├── menu-brand-2.png │ │ │ │ └── menu-brand-3.png │ │ │ │ ├── menu-1.jpg │ │ │ │ ├── menu-2.jpg │ │ │ │ └── menu-3.jpg │ │ ├── icon │ │ │ ├── Arrow - Right.svg │ │ │ ├── New folder │ │ │ │ ├── arrow-left.svg │ │ │ │ └── arrow-right.svg │ │ │ ├── arrow-right.svg │ │ │ ├── banner-arrow-right.svg │ │ │ ├── contact.png │ │ │ ├── cross-out.png │ │ │ ├── language-flag.png │ │ │ ├── location.svg │ │ │ ├── login │ │ │ │ ├── apple.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── facebook.svg │ │ │ │ └── google.svg │ │ │ ├── mail.svg │ │ │ ├── menu │ │ │ │ ├── acce.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── cooking.svg │ │ │ │ ├── electronics.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── home.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── monitor.svg │ │ │ │ ├── user.svg │ │ │ │ └── video.svg │ │ │ ├── payment-option.png │ │ │ ├── product-offer-more-arrow-right.svg │ │ │ ├── section-title-line-2.svg │ │ │ └── section-title-line.svg │ │ ├── instagram │ │ │ ├── 2 │ │ │ │ ├── insta-1.jpg │ │ │ │ ├── insta-2.jpg │ │ │ │ ├── insta-3.jpg │ │ │ │ ├── insta-4.jpg │ │ │ │ └── insta-icon.png │ │ │ ├── 3 │ │ │ │ ├── instagram-1.jpg │ │ │ │ ├── instagram-2.jpg │ │ │ │ ├── instagram-3.jpg │ │ │ │ ├── instagram-4.jpg │ │ │ │ ├── instagram-5.jpg │ │ │ │ └── instagram-6.jpg │ │ │ ├── 4 │ │ │ │ ├── instagram-1.jpg │ │ │ │ ├── instagram-2.jpg │ │ │ │ ├── instagram-3.jpg │ │ │ │ ├── instagram-4.jpg │ │ │ │ ├── instagram-5.jpg │ │ │ │ └── instagram-6.jpg │ │ │ ├── instagram-1.jpg │ │ │ ├── instagram-2.jpg │ │ │ ├── instagram-3.jpg │ │ │ ├── instagram-4.jpg │ │ │ └── instagram-5.jpg │ │ ├── login │ │ │ ├── laptop.png │ │ │ ├── login-shape-1.png │ │ │ ├── login-shape-2.png │ │ │ ├── login-shape-3.png │ │ │ ├── login-shape-4.png │ │ │ ├── man.png │ │ │ ├── shape-1.png │ │ │ ├── shape-2.png │ │ │ ├── shape-3.png │ │ │ └── shape-4.png │ │ ├── logo │ │ │ ├── favicon.png │ │ │ ├── logo-white.svg │ │ │ ├── logo.svg │ │ │ └── preloader │ │ │ │ ├── preloader-circle-2.svg │ │ │ │ ├── preloader-circle.svg │ │ │ │ └── preloader-icon.svg │ │ ├── menu │ │ │ ├── menu-home-1.jpg │ │ │ ├── menu-home-2.jpg │ │ │ ├── menu-home-3.jpg │ │ │ ├── menu-home-4.jpg │ │ │ ├── menu-home-5.jpg │ │ │ └── product │ │ │ │ ├── menu-product-img-1.jpg │ │ │ │ └── menu-product-img-2.jpg │ │ ├── product │ │ │ ├── 2 │ │ │ │ ├── prodcut-1.jpg │ │ │ │ ├── prodcut-10.jpg │ │ │ │ ├── prodcut-11.jpg │ │ │ │ ├── prodcut-12.jpg │ │ │ │ ├── prodcut-2.jpg │ │ │ │ ├── prodcut-3.jpg │ │ │ │ ├── prodcut-4.jpg │ │ │ │ ├── prodcut-5.jpg │ │ │ │ ├── prodcut-6.jpg │ │ │ │ ├── prodcut-7.jpg │ │ │ │ ├── prodcut-8.jpg │ │ │ │ └── prodcut-9.jpg │ │ │ ├── 3 │ │ │ │ ├── product-1.jpg │ │ │ │ ├── product-10.jpg │ │ │ │ ├── product-11.jpg │ │ │ │ ├── product-12.jpg │ │ │ │ ├── product-13.jpg │ │ │ │ ├── product-14.jpg │ │ │ │ ├── product-15.jpg │ │ │ │ ├── product-16.jpg │ │ │ │ ├── product-17.jpg │ │ │ │ ├── product-18.jpg │ │ │ │ ├── product-19.jpg │ │ │ │ ├── product-2.jpg │ │ │ │ ├── product-20.jpg │ │ │ │ ├── product-21.jpg │ │ │ │ ├── product-3.jpg │ │ │ │ ├── product-4.jpg │ │ │ │ ├── product-5.jpg │ │ │ │ ├── product-6.jpg │ │ │ │ ├── product-7.jpg │ │ │ │ ├── product-8.jpg │ │ │ │ └── product-9.jpg │ │ │ ├── 4 │ │ │ │ ├── product-1.jpg │ │ │ │ ├── product-10.jpg │ │ │ │ ├── product-11.jpg │ │ │ │ ├── product-12.jpg │ │ │ │ ├── product-2.jpg │ │ │ │ ├── product-3.jpg │ │ │ │ ├── product-4.jpg │ │ │ │ ├── product-5.jpg │ │ │ │ ├── product-6.jpg │ │ │ │ ├── product-7.jpg │ │ │ │ ├── product-8.jpg │ │ │ │ └── product-9.jpg │ │ │ ├── 5 │ │ │ │ ├── product-1.jpg │ │ │ │ ├── product-10.jpg │ │ │ │ ├── product-11.jpg │ │ │ │ ├── product-2.jpg │ │ │ │ ├── product-3.jpg │ │ │ │ ├── product-4.jpg │ │ │ │ ├── product-5.jpg │ │ │ │ ├── product-6.jpg │ │ │ │ ├── product-7.jpg │ │ │ │ ├── product-8.jpg │ │ │ │ └── product-9.jpg │ │ │ ├── action │ │ │ │ ├── product-cart.svg │ │ │ │ ├── product-compare.svg │ │ │ │ ├── product-heart.svg │ │ │ │ └── product-view.svg │ │ │ ├── banner │ │ │ │ ├── product-banner-1.jpg │ │ │ │ └── product-banner-2.jpg │ │ │ ├── cart │ │ │ │ ├── product-cart-1.jpg │ │ │ │ ├── product-cart-2.jpg │ │ │ │ ├── product-cart-3.jpg │ │ │ │ └── product-cart-4.jpg │ │ │ ├── cartmini │ │ │ │ └── empty-cart.png │ │ │ ├── category │ │ │ │ ├── product-cat-1.png │ │ │ │ ├── product-cat-2.png │ │ │ │ ├── product-cat-3.png │ │ │ │ ├── product-cat-4.png │ │ │ │ └── product-cat-5.png │ │ │ ├── collection │ │ │ │ ├── 4 │ │ │ │ │ ├── collection-1.jpg │ │ │ │ │ ├── collection-sm-1.jpg │ │ │ │ │ └── side-text.png │ │ │ │ ├── collection-1.jpg │ │ │ │ └── collection-2.jpg │ │ │ ├── details │ │ │ │ ├── 2 │ │ │ │ │ ├── desc │ │ │ │ │ │ ├── product-details-desc-1.jpg │ │ │ │ │ │ ├── product-details-desc-2.jpg │ │ │ │ │ │ ├── product-details-desc-3.jpg │ │ │ │ │ │ ├── product-details-desc-4.jpg │ │ │ │ │ │ └── product-details-desc-5.jpg │ │ │ │ │ ├── main │ │ │ │ │ │ ├── product-details-main-1.jpg │ │ │ │ │ │ ├── product-details-main-2.jpg │ │ │ │ │ │ ├── product-details-main-3.jpg │ │ │ │ │ │ ├── product-details-main-4.jpg │ │ │ │ │ │ └── product-details-main-5.jpg │ │ │ │ │ └── nav │ │ │ │ │ │ ├── product-details-nav-1.jpg │ │ │ │ │ │ ├── product-details-nav-2.jpg │ │ │ │ │ │ ├── product-details-nav-3.jpg │ │ │ │ │ │ ├── product-details-nav-4.jpg │ │ │ │ │ │ └── product-details-nav-5.jpg │ │ │ │ ├── 3 │ │ │ │ │ ├── main │ │ │ │ │ │ ├── product-details-main-1.jpg │ │ │ │ │ │ ├── product-details-main-2.jpg │ │ │ │ │ │ ├── product-details-main-3.jpg │ │ │ │ │ │ └── product-details-main-4.jpg │ │ │ │ │ └── nav │ │ │ │ │ │ ├── product-details-nav-1.jpg │ │ │ │ │ │ ├── product-details-nav-2.jpg │ │ │ │ │ │ ├── product-details-nav-3.jpg │ │ │ │ │ │ └── product-details-nav-4.jpg │ │ │ │ ├── 4 │ │ │ │ │ ├── main │ │ │ │ │ │ ├── product-details-main-1.jpg │ │ │ │ │ │ ├── product-details-main-2.jpg │ │ │ │ │ │ ├── product-details-main-3.jpg │ │ │ │ │ │ └── product-details-main-4.jpg │ │ │ │ │ └── nav │ │ │ │ │ │ ├── product-details-nav-1.jpg │ │ │ │ │ │ ├── product-details-nav-2.jpg │ │ │ │ │ │ ├── product-details-nav-3.jpg │ │ │ │ │ │ └── product-details-nav-4.jpg │ │ │ │ ├── 5 │ │ │ │ │ ├── main │ │ │ │ │ │ ├── product-details-main-1.jpg │ │ │ │ │ │ ├── product-details-main-2.jpg │ │ │ │ │ │ ├── product-details-main-3.jpg │ │ │ │ │ │ └── product-details-main-4.jpg │ │ │ │ │ └── nav │ │ │ │ │ │ ├── product-details-nav-1.jpg │ │ │ │ │ │ ├── product-details-nav-2.jpg │ │ │ │ │ │ ├── product-details-nav-3.jpg │ │ │ │ │ │ └── product-details-nav-4.jpg │ │ │ │ ├── desc │ │ │ │ │ ├── product-details-desc-1.jpg │ │ │ │ │ ├── product-details-desc-2.jpg │ │ │ │ │ └── product-details-desc-3.jpg │ │ │ │ ├── grid │ │ │ │ │ ├── product-details-grid-1.jpg │ │ │ │ │ ├── product-details-grid-2.jpg │ │ │ │ │ ├── product-details-grid-3.jpg │ │ │ │ │ ├── product-details-grid-4.jpg │ │ │ │ │ ├── product-details-grid-5.jpg │ │ │ │ │ └── product-details-grid-6.jpg │ │ │ │ ├── list │ │ │ │ │ ├── product-details-list-1.jpg │ │ │ │ │ ├── product-details-list-2.jpg │ │ │ │ │ ├── product-details-list-3.jpg │ │ │ │ │ └── product-details-list-4.jpg │ │ │ │ ├── main │ │ │ │ │ ├── product-details-main-1.jpg │ │ │ │ │ ├── product-details-main-2.jpg │ │ │ │ │ ├── product-details-main-3.jpg │ │ │ │ │ ├── product-details-main-4.jpg │ │ │ │ │ └── product-details-main-5.jpg │ │ │ │ ├── nav │ │ │ │ │ ├── product-details-nav-1.jpg │ │ │ │ │ ├── product-details-nav-2.jpg │ │ │ │ │ ├── product-details-nav-3.jpg │ │ │ │ │ ├── product-details-nav-4.jpg │ │ │ │ │ └── product-details-nav-5.jpg │ │ │ │ └── slider │ │ │ │ │ ├── product-details-slider-1.jpg │ │ │ │ │ ├── product-details-slider-2.jpg │ │ │ │ │ ├── product-details-slider-3.jpg │ │ │ │ │ ├── product-details-slider-4.jpg │ │ │ │ │ ├── product-details-slider-5.jpg │ │ │ │ │ └── product-details-slider-6.jpg │ │ │ ├── featured │ │ │ │ ├── featured-1.png │ │ │ │ ├── featured-2.png │ │ │ │ └── featured-3.png │ │ │ ├── gadget │ │ │ │ ├── gadget-banner-1.jpg │ │ │ │ ├── gadget-banner-2.jpg │ │ │ │ └── gadget-girl.png │ │ │ ├── icons │ │ │ │ ├── check-2.svg │ │ │ │ ├── check-3.svg │ │ │ │ ├── check.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── grid.svg │ │ │ │ ├── list.svg │ │ │ │ └── payment-option.png │ │ │ ├── list │ │ │ │ ├── product-list-1.jpg │ │ │ │ ├── product-list-2.jpg │ │ │ │ ├── product-list-3.jpg │ │ │ │ ├── product-list-4.jpg │ │ │ │ ├── product-list-5.jpg │ │ │ │ ├── product-list-6.jpg │ │ │ │ ├── product-list-7.jpg │ │ │ │ └── product-list-8.jpg │ │ │ ├── offer │ │ │ │ ├── product-offer-1.jpg │ │ │ │ ├── product-offer-2.jpg │ │ │ │ └── product-offer-3.jpg │ │ │ ├── product-1.jpg │ │ │ ├── product-10.jpg │ │ │ ├── product-11.jpg │ │ │ ├── product-12.jpg │ │ │ ├── product-13.jpg │ │ │ ├── product-14.jpg │ │ │ ├── product-15.jpg │ │ │ ├── product-16.jpg │ │ │ ├── product-17.jpg │ │ │ ├── product-2.jpg │ │ │ ├── product-3.jpg │ │ │ ├── product-4.jpg │ │ │ ├── product-5-1.jpg │ │ │ ├── product-5-2.jpg │ │ │ ├── product-5-3.jpg │ │ │ ├── product-5.jpg │ │ │ ├── product-6.jpg │ │ │ ├── product-7.jpg │ │ │ ├── product-8.jpg │ │ │ ├── product-9.jpg │ │ │ ├── product-tab-line.svg │ │ │ ├── related │ │ │ │ ├── 2 │ │ │ │ │ ├── product-related-1.jpg │ │ │ │ │ ├── product-related-2.jpg │ │ │ │ │ ├── product-related-3.jpg │ │ │ │ │ └── product-related-4.jpg │ │ │ │ ├── product-related-1.jpg │ │ │ │ ├── product-related-2.jpg │ │ │ │ ├── product-related-3.jpg │ │ │ │ └── product-related-4.jpg │ │ │ ├── shop │ │ │ │ ├── brand │ │ │ │ │ ├── brand-1.png │ │ │ │ │ ├── brand-2.png │ │ │ │ │ ├── brand-3.png │ │ │ │ │ ├── brand-4.png │ │ │ │ │ ├── brand-5.png │ │ │ │ │ ├── brand-6.png │ │ │ │ │ ├── brand-7.png │ │ │ │ │ └── brand-8.png │ │ │ │ └── sm │ │ │ │ │ ├── shop-sm-1.jpg │ │ │ │ │ ├── shop-sm-2.jpg │ │ │ │ │ ├── shop-sm-3.jpg │ │ │ │ │ └── shop-sm-4.jpg │ │ │ ├── side │ │ │ │ ├── pre-title.png │ │ │ │ └── side-1.png │ │ │ ├── slider │ │ │ │ ├── product-slider-1.jpg │ │ │ │ ├── product-slider-2.jpg │ │ │ │ ├── product-slider-3.jpg │ │ │ │ ├── product-slider-4.jpg │ │ │ │ └── product-slider-5.jpg │ │ │ ├── sm │ │ │ │ ├── 5 │ │ │ │ │ ├── product-sm-1.jpg │ │ │ │ │ ├── product-sm-2.jpg │ │ │ │ │ ├── product-sm-3.jpg │ │ │ │ │ ├── product-sm-4.jpg │ │ │ │ │ ├── product-sm-5.jpg │ │ │ │ │ └── product-sm-6.jpg │ │ │ │ ├── product-sm-1.jpg │ │ │ │ ├── product-sm-2.jpg │ │ │ │ ├── product-sm-3.jpg │ │ │ │ ├── product-sm-4.jpg │ │ │ │ ├── product-sm-5.jpg │ │ │ │ ├── product-sm-6.jpg │ │ │ │ ├── product-sm-7.jpg │ │ │ │ ├── product-sm-8.jpg │ │ │ │ └── product-sm-9.jpg │ │ │ ├── special │ │ │ │ ├── big │ │ │ │ │ ├── special-big-1.jpg │ │ │ │ │ └── special-big-2.jpg │ │ │ │ ├── special-1.jpg │ │ │ │ └── special-2.jpg │ │ │ ├── star_01.svg │ │ │ └── trending │ │ │ │ ├── banner │ │ │ │ └── trending-banner.jpg │ │ │ │ ├── trending-1.jpg │ │ │ │ ├── trending-2.jpg │ │ │ │ └── trending-3.jpg │ │ ├── slider │ │ │ ├── 2 │ │ │ │ ├── shape │ │ │ │ │ ├── shape-1.png │ │ │ │ │ ├── shape-2.png │ │ │ │ │ └── shape-3.png │ │ │ │ ├── slider-1.png │ │ │ │ ├── slider-2.png │ │ │ │ └── slider-3.png │ │ │ ├── 3 │ │ │ │ ├── slider-1.jpg │ │ │ │ ├── slider-2.jpg │ │ │ │ └── slider-3.jpg │ │ │ ├── 4 │ │ │ │ ├── nav │ │ │ │ │ ├── icon-1.png │ │ │ │ │ ├── icon-2.png │ │ │ │ │ ├── icon-3.png │ │ │ │ │ └── icon-4.png │ │ │ │ ├── shape │ │ │ │ │ └── rounded-test.png │ │ │ │ ├── slider-1.png │ │ │ │ ├── slider-2.png │ │ │ │ ├── slider-3.png │ │ │ │ └── slider-4.png │ │ │ ├── 5 │ │ │ │ ├── shape │ │ │ │ │ ├── offer.png │ │ │ │ │ ├── shape-1.png │ │ │ │ │ ├── shape-2.png │ │ │ │ │ ├── shape-3.png │ │ │ │ │ └── shape-4.png │ │ │ │ ├── slider-1.png │ │ │ │ └── subtitle.png │ │ │ ├── shape │ │ │ │ ├── slider-shape-1.png │ │ │ │ ├── slider-shape-2.png │ │ │ │ ├── slider-shape-3.png │ │ │ │ └── slider-shape-4.png │ │ │ ├── slider-img-1.png │ │ │ ├── slider-img-2.png │ │ │ └── slider-img-3.png │ │ ├── subscribe │ │ │ ├── plane.png │ │ │ ├── subscribe-shape-1.png │ │ │ ├── subscribe-shape-2.png │ │ │ ├── subscribe-shape-3.png │ │ │ └── subscribe-shape-4.png │ │ ├── testimonial │ │ │ ├── testimonial-quote-2.png │ │ │ └── testimonial-quote.png │ │ └── users │ │ │ ├── user-1.jpg │ │ │ ├── user-10.jpg │ │ │ ├── user-11.jpg │ │ │ ├── user-2.jpg │ │ │ ├── user-3.jpg │ │ │ ├── user-4.jpg │ │ │ ├── user-5.jpg │ │ │ ├── user-6.jpg │ │ │ ├── user-7.jpg │ │ │ ├── user-8.jpg │ │ │ └── user-9.jpg │ ├── mail.php │ ├── sass.txt │ └── scss │ │ ├── components │ │ ├── _accordion.scss │ │ ├── _animation.scss │ │ ├── _background.scss │ │ ├── _backtotop.scss │ │ ├── _breadcrumb.scss │ │ ├── _buttons.scss │ │ ├── _carousel.scss │ │ ├── _hotspot.scss │ │ ├── _modal.scss │ │ ├── _nice-select.scss │ │ ├── _offcanvas.scss │ │ ├── _pagination.scss │ │ ├── _preloader.scss │ │ ├── _rangeSlider.scss │ │ ├── _search.scss │ │ ├── _section-title.scss │ │ ├── _tab.scss │ │ ├── _theme-settings.scss │ │ └── index.scss │ │ ├── layout │ │ ├── blog │ │ │ ├── _blog.scss │ │ │ ├── _blogGrid.scss │ │ │ ├── _postbox.scss │ │ │ ├── _recent-post.scss │ │ │ ├── _sidebar.scss │ │ │ └── index.scss │ │ ├── ecommerce │ │ │ ├── _banner.scss │ │ │ ├── _cart.scss │ │ │ ├── _cartmini.scss │ │ │ ├── _category.scss │ │ │ ├── _checkout.scss │ │ │ ├── _collection.scss │ │ │ ├── _compare.scss │ │ │ ├── _coupon.scss │ │ │ ├── _deal.scss │ │ │ ├── _ecommerce.scss │ │ │ ├── _featured-product.scss │ │ │ ├── _filterOffcanvas.scss │ │ │ ├── _modal.scss │ │ │ ├── _order.scss │ │ │ ├── _product-2.scss │ │ │ ├── _product-3.scss │ │ │ ├── _product-4.scss │ │ │ ├── _product-5.scss │ │ │ ├── _product.scss │ │ │ ├── _productDetails.scss │ │ │ ├── _quantity.scss │ │ │ ├── _shop.scss │ │ │ ├── _sideBanner.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _trending.scss │ │ │ ├── _widget.scss │ │ │ └── index.scss │ │ ├── footer │ │ │ ├── _footer-1.scss │ │ │ ├── _footer-2.scss │ │ │ ├── _footer-3.scss │ │ │ ├── _footer-4.scss │ │ │ ├── _footer-5.scss │ │ │ └── index.scss │ │ ├── header │ │ │ ├── _header-1.scss │ │ │ ├── _header-2.scss │ │ │ ├── _header-3.scss │ │ │ ├── _header-5.scss │ │ │ └── index.scss │ │ ├── index.scss │ │ ├── menu │ │ │ ├── _categoryMenu.scss │ │ │ ├── _meanmenu.scss │ │ │ ├── _menu.scss │ │ │ ├── _mobile.scss │ │ │ └── index.scss │ │ └── pages │ │ │ ├── _about.scss │ │ │ ├── _brand.scss │ │ │ ├── _contact.scss │ │ │ ├── _cta.scss │ │ │ ├── _error.scss │ │ │ ├── _feature.scss │ │ │ ├── _instagram.scss │ │ │ ├── _login.scss │ │ │ ├── _profile.scss │ │ │ ├── _slider.scss │ │ │ ├── _subscribe.scss │ │ │ ├── _testimonial.scss │ │ │ └── index.scss │ │ ├── main.scss │ │ ├── theme │ │ ├── _common.scss │ │ ├── _spacing.scss │ │ ├── _theme.scss │ │ └── index.scss │ │ └── utils │ │ ├── _breakpoints.scss │ │ ├── _colors.scss │ │ ├── _extends.scss │ │ ├── _mixins.scss │ │ ├── _root.scss │ │ ├── _typography.scss │ │ ├── _variables.scss │ │ └── index.scss ├── favicon.ico ├── favicon.png ├── next.svg ├── thirteen.svg └── vercel.svg └── src ├── components ├── about │ └── jewelry-about.jsx ├── banner │ ├── banner-area.jsx │ ├── beauty-banner.jsx │ ├── fashion-banner.jsx │ └── jewelry-banner.jsx ├── blog-details │ ├── blog-details-area-2.jsx │ ├── blog-details-area.jsx │ ├── blog-details-author.jsx │ ├── blog-details-comments.jsx │ ├── postbox-details-nav.jsx │ └── postbox-details-top.jsx ├── blog │ ├── blog-grid │ │ ├── blog-grid-area.jsx │ │ ├── grid-item.jsx │ │ ├── list-item.jsx │ │ └── section-title.jsx │ ├── blog-postox │ │ ├── blog-item.jsx │ │ ├── blog-postbox-area.jsx │ │ └── blog-sidebar.jsx │ ├── electronic │ │ ├── blog-area.jsx │ │ └── blog-item.jsx │ └── fashion │ │ ├── blog-area.jsx │ │ └── blog-item.jsx ├── brand │ └── jewelry-brands.jsx ├── breadcrumb │ ├── blog-breadcrumb.jsx │ ├── common-breadcrumb.jsx │ ├── contact-breadcrumb.jsx │ ├── product-details-breadcrumb.jsx │ └── shop-breadcrumb.jsx ├── cart-wishlist │ ├── cart-area.jsx │ ├── cart-checkout.jsx │ ├── cart-item.jsx │ ├── wishlist-area.jsx │ └── wishlist-item.jsx ├── categories │ ├── beauty-category.jsx │ ├── electronic-category.jsx │ ├── fashion-category.jsx │ └── shop-category-area.jsx ├── checkout │ ├── checkout-area.jsx │ ├── checkout-billing-area.jsx │ ├── checkout-coupon.jsx │ ├── checkout-login.jsx │ └── checkout-order-area.jsx ├── common │ ├── back-to-top.jsx │ ├── cart-mini-sidebar.jsx │ ├── error-msg.jsx │ ├── mobile-menus.jsx │ ├── off-canvas.jsx │ ├── popup-video.jsx │ ├── product-modal │ │ └── index.jsx │ ├── render-cart-progress.jsx │ ├── shop-filter-offcanvas.jsx │ └── timer.jsx ├── compare │ └── compare-area.jsx ├── contact │ ├── contact-area.jsx │ └── contact-map.jsx ├── coupon │ ├── coupon-area.jsx │ ├── coupon-item.jsx │ └── offer-timer.jsx ├── cta │ └── cta-area.jsx ├── features │ ├── beauty-featured.jsx │ ├── feature-area-2.jsx │ ├── feature-area-3.jsx │ └── feature-area.jsx ├── forms │ ├── blog-post-comment-form.jsx │ ├── contact-form.jsx │ ├── forgot-form.jsx │ ├── header-search-form.jsx │ ├── login-form.jsx │ ├── register-form.jsx │ └── review-form.jsx ├── hero-banner │ └── home-hero-slider.jsx ├── instagram │ ├── instagram-area-2.jsx │ ├── instagram-area-3.jsx │ ├── instagram-area-4.jsx │ └── instagram-area.jsx ├── loader │ ├── coupon-loader.jsx │ ├── home-2 │ │ ├── home-2-bestSell-loader.jsx │ │ ├── home-2-cate-loader.jsx │ │ ├── home-2-featured-loader.jsx │ │ ├── home-2-newPrd-loader.jsx │ │ ├── home-2-popular-loader.jsx │ │ └── home-2-prd-loder.jsx │ ├── home-3 │ │ ├── beauty-category-loader.jsx │ │ ├── beauty-prd-2-loader.jsx │ │ ├── beauty-prd-loader.jsx │ │ └── beauty-trendingPrd-loader.jsx │ ├── home │ │ ├── category-list-loader.jsx │ │ ├── home-cate-loader.jsx │ │ ├── home-gadget-prd-loader.jsx │ │ ├── home-newArrival-prd-loader.jsx │ │ ├── home-offer-prd-loader.jsx │ │ ├── home-prd-loader.jsx │ │ └── home-sm-prd-loader.jsx │ ├── index.jsx │ ├── loader.jsx │ ├── prd-details-loader.jsx │ ├── search-prd-loader.jsx │ └── shop │ │ ├── color-filter-loader.jsx │ │ ├── shop-brand-loader.jsx │ │ ├── shop-category-loader.jsx │ │ ├── shop-hidden-loader.jsx │ │ ├── shop-loader.jsx │ │ └── top-rated-prd-loader.jsx ├── login-register │ ├── forgot-area.jsx │ ├── google-sign-up.jsx │ ├── login-area.jsx │ ├── login-shapes.jsx │ └── register-area.jsx ├── my-account │ ├── change-password.jsx │ ├── my-orders.jsx │ ├── nav-profile-tab.jsx │ ├── profile-area.jsx │ ├── profile-info.jsx │ ├── profile-nav-tab.jsx │ └── profile-shape.jsx ├── offer-banner │ └── beauty-offer-banner.jsx ├── offerHeader │ ├── OfferCouponArea.jsx │ └── OfferCouponItem.jsx ├── product-details │ ├── details-bottom-info.jsx │ ├── details-tab-nav.jsx │ ├── details-thumb-wrapper.jsx │ ├── details-wrapper.jsx │ ├── product-details-area.jsx │ ├── product-details-countdown.jsx │ ├── product-quantity.jsx │ ├── related-products.jsx │ └── review-item.jsx ├── products │ ├── beauty │ │ ├── product-area-2.jsx │ │ ├── product-area.jsx │ │ ├── product-item.jsx │ │ └── trending-special-prd.jsx │ ├── electronics │ │ ├── new-arrivals.jsx │ │ ├── offer-products.jsx │ │ ├── prd-category-list.jsx │ │ ├── product-area.jsx │ │ ├── product-badge.jsx │ │ ├── product-banner.jsx │ │ ├── product-gadget-area.jsx │ │ ├── product-item.jsx │ │ ├── product-sm-area.jsx │ │ └── product-sm-item.jsx │ ├── fashion │ │ ├── best-seller-products.jsx │ │ ├── popular-products.jsx │ │ ├── product-area.jsx │ │ ├── product-item.jsx │ │ ├── trending-products.jsx │ │ └── weeks-featured.jsx │ └── jewelry │ │ ├── best-seller-prd.jsx │ │ ├── popular-products.jsx │ │ ├── product-area.jsx │ │ ├── product-item.jsx │ │ └── product-slider-item.jsx ├── seo.jsx ├── shop-banner │ ├── jewelry-collection-banner.jsx │ └── jewelry-shop-banner.jsx ├── shop │ ├── shop-area.jsx │ ├── shop-filter │ │ ├── category-filter.jsx │ │ ├── color-filter.jsx │ │ ├── price-filter.jsx │ │ ├── product-brand.jsx │ │ ├── reset-button.jsx │ │ ├── status-filter.jsx │ │ └── top-rated-products.jsx │ ├── shop-hidden-sidebar-area.jsx │ ├── shop-list-item.jsx │ ├── shop-right-area.jsx │ ├── shop-top-left.jsx │ └── shop-top-right.jsx └── testimonial │ ├── beauty-testimonial.jsx │ └── fashion-testimonial.jsx ├── data ├── blog-comment-data.js ├── blog-data.js ├── menu-data.js ├── social-data.js └── testimonial-data.js ├── hooks ├── use-auth-check.js ├── use-cart-info.js ├── use-checkout-submit.js ├── use-pagination.js ├── use-search-form-submit.js └── use-sticky.js ├── layout ├── footers │ ├── footer-2.jsx │ └── footer.jsx ├── headers │ ├── header-2.jsx │ ├── header-3.jsx │ ├── header-4.jsx │ ├── header-com │ │ ├── header-category.jsx │ │ ├── header-main-right.jsx │ │ ├── header-top-right.jsx │ │ ├── menus.jsx │ │ ├── mobile-category.jsx │ │ └── search-bar.jsx │ └── header.jsx └── wrapper.jsx ├── lib └── back-to-top.js ├── pages ├── 404.jsx ├── _app.jsx ├── _document.jsx ├── api │ └── hello.js ├── blog-details-2 │ ├── [id].jsx │ └── index.jsx ├── blog-details │ ├── [id].jsx │ └── index.jsx ├── blog-grid.jsx ├── blog-list.jsx ├── blog.jsx ├── cart.jsx ├── checkout.jsx ├── compare.jsx ├── contact.jsx ├── coupon.jsx ├── email-verify │ └── [token].js ├── forget-password │ └── [token].jsx ├── forgot.jsx ├── home-2.jsx ├── home-3.jsx ├── home-4.jsx ├── index.jsx ├── login.jsx ├── order │ └── [id].jsx ├── product-details-countdown │ └── index.jsx ├── product-details-swatches │ └── index.jsx ├── product-details-video │ └── index.jsx ├── product-details │ ├── [id].jsx │ └── index.jsx ├── profile.jsx ├── register.jsx ├── search.jsx ├── shop-category.jsx ├── shop-hidden-sidebar.jsx ├── shop-right-sidebar.jsx ├── shop.jsx └── wishlist.jsx ├── redux ├── api │ └── apiSlice.js ├── features │ ├── auth │ │ ├── authApi.js │ │ └── authSlice.js │ ├── brandApi.js │ ├── cartSlice.js │ ├── categoryApi.js │ ├── compareSlice.js │ ├── coupon │ │ ├── couponApi.js │ │ └── couponSlice.js │ ├── order │ │ ├── orderApi.js │ │ └── orderSlice.js │ ├── productApi.js │ ├── productModalSlice.js │ ├── reviewApi.js │ ├── shop-filter-slice.js │ └── wishlist-slice.js └── store.js ├── styles └── index.scss ├── svg ├── add-cart.js ├── animated-line.js ├── arrow-next-2.js ├── arrow-next-sm.js ├── arrow-next.js ├── arrow-prev-2.js ├── arrow-prev-sm.js ├── arrow-prev.js ├── arrow-right-long-prev.js ├── arrow-right-long.js ├── arrow-right-sm-2.js ├── arrow-right-sm.js ├── arrow-right.js ├── ask-a-question.js ├── box.js ├── cart-2.js ├── cart.js ├── category-menu.js ├── close-2.js ├── close-eye.js ├── close.js ├── comment.js ├── compare-2.js ├── compare-3.js ├── compare.js ├── cosmetics.js ├── date.js ├── delivery-2.js ├── delivery.js ├── discount.js ├── email-2.js ├── email.js ├── facebook.js ├── filter.js ├── grid-tab.js ├── index.js ├── info-details.js ├── list-tab.js ├── location-2.js ├── location.js ├── meckoup.js ├── menu.js ├── minus.js ├── next-arr.js ├── next-long-arr.js ├── open-eye.js ├── pagination-next.js ├── pagination-prev.js ├── pause.js ├── phone-2.js ├── phone-3.js ├── phone.js ├── play.js ├── plus-2.js ├── plus.js ├── prev-arr.js ├── prev-long-arr-2.js ├── prev-long-arr.js ├── processing.js ├── quick-view.js ├── refund.js ├── search.js ├── shape-line-sm.js ├── shape-line.js ├── shipping-car.js ├── slider-next-btn.js ├── slider-prev-btn.js ├── sm-dot.js ├── support.js ├── tab-line.js ├── tags.js ├── text-shape-line.js ├── text-shape.js ├── truck.js ├── user-2.js ├── user-3.js ├── user.js ├── vegan-product.js ├── wishlist-2.js └── wishlist.js ├── ui ├── Pagination.jsx ├── input-range │ └── index.jsx └── nice-select.jsx └── utils ├── localstorage.js └── toast.js /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/css/animate.css -------------------------------------------------------------------------------- /public/assets/css/flaticon_shofy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/css/flaticon_shofy.css -------------------------------------------------------------------------------- /public/assets/css/font-awesome-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/css/font-awesome-pro.css -------------------------------------------------------------------------------- /public/assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/fa-light-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-light-300.ttf -------------------------------------------------------------------------------- /public/assets/fonts/fa-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-light-300.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/fa-thin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-thin-100.ttf -------------------------------------------------------------------------------- /public/assets/fonts/fa-thin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-thin-100.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /public/assets/fonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/flaticon_shofy.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/flaticon_shofy.eot -------------------------------------------------------------------------------- /public/assets/fonts/flaticon_shofy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/flaticon_shofy.ttf -------------------------------------------------------------------------------- /public/assets/fonts/flaticon_shofy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/flaticon_shofy.woff -------------------------------------------------------------------------------- /public/assets/fonts/flaticon_shofy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/fonts/flaticon_shofy.woff2 -------------------------------------------------------------------------------- /public/assets/img/about/about-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/about/about-1.jpg -------------------------------------------------------------------------------- /public/assets/img/about/about-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/about/about-2.jpg -------------------------------------------------------------------------------- /public/assets/img/banner/2/banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/2/banner-1.jpg -------------------------------------------------------------------------------- /public/assets/img/banner/2/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/2/banner-2.jpg -------------------------------------------------------------------------------- /public/assets/img/banner/2/banner-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/2/banner-3.jpg -------------------------------------------------------------------------------- /public/assets/img/banner/4/banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/4/banner-1.jpg -------------------------------------------------------------------------------- /public/assets/img/banner/4/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/4/banner-2.jpg -------------------------------------------------------------------------------- /public/assets/img/banner/4/banner-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/4/banner-3.jpg -------------------------------------------------------------------------------- /public/assets/img/banner/4/banner-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/4/banner-4.jpg -------------------------------------------------------------------------------- /public/assets/img/banner/5/best-banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/5/best-banner-1.jpg -------------------------------------------------------------------------------- /public/assets/img/banner/banner-slider-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/banner-slider-1.png -------------------------------------------------------------------------------- /public/assets/img/banner/banner-slider-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/banner-slider-2.png -------------------------------------------------------------------------------- /public/assets/img/banner/banner-slider-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/banner-slider-3.png -------------------------------------------------------------------------------- /public/assets/img/banner/banner-slider-offer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/banner/banner-slider-offer.png -------------------------------------------------------------------------------- /public/assets/img/blog/2/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/2/blog-1.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/2/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/2/blog-2.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/2/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/2/blog-3.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/blog-1.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/blog-2.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/blog-3.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/blog-big-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/blog-big-1.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/blog-big-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/blog-big-2.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/blog-big-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/blog-big-3.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/blog-big-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/blog-big-4.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/blog-big-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/blog-big-5.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/blog-big-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/blog-big-6.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/details/blog-big-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/details/blog-big-1.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/details/shape/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/details/shape/line.png -------------------------------------------------------------------------------- /public/assets/img/blog/details/shape/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/details/shape/quote.png -------------------------------------------------------------------------------- /public/assets/img/blog/grid/blog-grid-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/grid/blog-grid-1.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/grid/blog-grid-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/grid/blog-grid-2.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/grid/blog-grid-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/grid/blog-grid-3.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/grid/blog-grid-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/grid/blog-grid-4.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/grid/blog-grid-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/grid/blog-grid-5.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/grid/blog-grid-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/grid/blog-grid-6.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/grid/blog-grid-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/grid/blog-grid-7.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/grid/blog-grid-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/grid/blog-grid-8.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/list/blog-list-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/list/blog-list-1.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/list/blog-list-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/list/blog-list-2.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/list/blog-list-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/list/blog-list-3.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/list/blog-list-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/list/blog-list-4.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/list/blog-list-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/list/blog-list-5.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/list/blog-list-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/list/blog-list-6.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/sidebar/blog-sidebar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/sidebar/blog-sidebar-1.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/sidebar/blog-sidebar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/sidebar/blog-sidebar-2.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/sidebar/blog-sidebar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/sidebar/blog-sidebar-3.jpg -------------------------------------------------------------------------------- /public/assets/img/blog/signature/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/blog/signature/signature.png -------------------------------------------------------------------------------- /public/assets/img/brand/logo_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/brand/logo_01.png -------------------------------------------------------------------------------- /public/assets/img/brand/logo_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/brand/logo_02.png -------------------------------------------------------------------------------- /public/assets/img/brand/logo_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/brand/logo_03.png -------------------------------------------------------------------------------- /public/assets/img/brand/logo_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/brand/logo_04.png -------------------------------------------------------------------------------- /public/assets/img/brand/logo_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/brand/logo_05.png -------------------------------------------------------------------------------- /public/assets/img/breadcrumb/breadcrumb-bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/breadcrumb/breadcrumb-bg-1.jpg -------------------------------------------------------------------------------- /public/assets/img/category/3/category-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/3/category-1.jpg -------------------------------------------------------------------------------- /public/assets/img/category/3/category-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/3/category-2.jpg -------------------------------------------------------------------------------- /public/assets/img/category/3/category-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/3/category-3.jpg -------------------------------------------------------------------------------- /public/assets/img/category/3/category-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/3/category-4.jpg -------------------------------------------------------------------------------- /public/assets/img/category/4/bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/4/bag.svg -------------------------------------------------------------------------------- /public/assets/img/category/4/category-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/4/category-1.jpg -------------------------------------------------------------------------------- /public/assets/img/category/4/category-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/4/category-2.jpg -------------------------------------------------------------------------------- /public/assets/img/category/4/category-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/4/category-3.jpg -------------------------------------------------------------------------------- /public/assets/img/category/4/category-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/4/category-4.jpg -------------------------------------------------------------------------------- /public/assets/img/category/4/category-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/4/category-5.jpg -------------------------------------------------------------------------------- /public/assets/img/category/5/category-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/5/category-1.jpg -------------------------------------------------------------------------------- /public/assets/img/category/5/category-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/5/category-2.jpg -------------------------------------------------------------------------------- /public/assets/img/category/5/category-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/5/category-3.jpg -------------------------------------------------------------------------------- /public/assets/img/category/5/category-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/5/category-4.jpg -------------------------------------------------------------------------------- /public/assets/img/category/5/category-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/5/category-5.jpg -------------------------------------------------------------------------------- /public/assets/img/category/5/category-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/5/category-6.jpg -------------------------------------------------------------------------------- /public/assets/img/category/category-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/category-1.jpg -------------------------------------------------------------------------------- /public/assets/img/category/category-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/category-2.jpg -------------------------------------------------------------------------------- /public/assets/img/category/category-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/category-3.jpg -------------------------------------------------------------------------------- /public/assets/img/category/category-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/category-4.jpg -------------------------------------------------------------------------------- /public/assets/img/category/category-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/category-5.jpg -------------------------------------------------------------------------------- /public/assets/img/category/category-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/category-6.jpg -------------------------------------------------------------------------------- /public/assets/img/category/main/category-main-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/main/category-main-1.jpg -------------------------------------------------------------------------------- /public/assets/img/category/main/category-main-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/main/category-main-2.jpg -------------------------------------------------------------------------------- /public/assets/img/category/main/category-main-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/main/category-main-3.jpg -------------------------------------------------------------------------------- /public/assets/img/category/main/category-main-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/main/category-main-4.jpg -------------------------------------------------------------------------------- /public/assets/img/category/main/category-main-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/main/category-main-5.jpg -------------------------------------------------------------------------------- /public/assets/img/category/main/category-main-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/main/category-main-6.jpg -------------------------------------------------------------------------------- /public/assets/img/category/main/category-main-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/main/category-main-7.jpg -------------------------------------------------------------------------------- /public/assets/img/category/main/category-main-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/main/category-main-8.jpg -------------------------------------------------------------------------------- /public/assets/img/category/main/category-main-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/category/main/category-main-9.jpg -------------------------------------------------------------------------------- /public/assets/img/contact/contact-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/contact/contact-icon-1.png -------------------------------------------------------------------------------- /public/assets/img/contact/contact-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/contact/contact-icon-2.png -------------------------------------------------------------------------------- /public/assets/img/contact/contact-icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/contact/contact-icon-3.png -------------------------------------------------------------------------------- /public/assets/img/cta/cta-thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/cta/cta-thumb-1.jpg -------------------------------------------------------------------------------- /public/assets/img/cta/shape/cta-shape-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/cta/shape/cta-shape-1.png -------------------------------------------------------------------------------- /public/assets/img/cta/shape/cta-shape-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/cta/shape/cta-shape-2.png -------------------------------------------------------------------------------- /public/assets/img/deal/shape/shape-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/deal/shape/shape-1.png -------------------------------------------------------------------------------- /public/assets/img/deal/shape/shape-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/deal/shape/shape-2.png -------------------------------------------------------------------------------- /public/assets/img/deal/shape/shape-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/deal/shape/shape-3.png -------------------------------------------------------------------------------- /public/assets/img/deal/shape/shape-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/deal/shape/shape-4.png -------------------------------------------------------------------------------- /public/assets/img/deal/shape/shape-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/deal/shape/shape-5.png -------------------------------------------------------------------------------- /public/assets/img/deal/shape/shape-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/deal/shape/shape-6.png -------------------------------------------------------------------------------- /public/assets/img/deal/shape/shape-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/deal/shape/shape-7.png -------------------------------------------------------------------------------- /public/assets/img/error/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/error/error.png -------------------------------------------------------------------------------- /public/assets/img/feature/features-icon-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/feature/features-icon-1.svg -------------------------------------------------------------------------------- /public/assets/img/feature/features-icon-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/feature/features-icon-2.svg -------------------------------------------------------------------------------- /public/assets/img/feature/features-icon-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/feature/features-icon-3.svg -------------------------------------------------------------------------------- /public/assets/img/feature/features-icon-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/feature/features-icon-4.svg -------------------------------------------------------------------------------- /public/assets/img/footer/footer-pay-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/footer/footer-pay-2.png -------------------------------------------------------------------------------- /public/assets/img/footer/footer-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/footer/footer-pay.png -------------------------------------------------------------------------------- /public/assets/img/header/header-call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/header-call.svg -------------------------------------------------------------------------------- /public/assets/img/header/header-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/header-cart.svg -------------------------------------------------------------------------------- /public/assets/img/header/header-cat-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/header-cat-bar.svg -------------------------------------------------------------------------------- /public/assets/img/header/header-compare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/header-compare.svg -------------------------------------------------------------------------------- /public/assets/img/header/header-love.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/header-love.svg -------------------------------------------------------------------------------- /public/assets/img/header/header-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/header-search.svg -------------------------------------------------------------------------------- /public/assets/img/header/header-truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/header-truck.svg -------------------------------------------------------------------------------- /public/assets/img/header/header-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/header-user.svg -------------------------------------------------------------------------------- /public/assets/img/header/menu/grocery/img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/menu/grocery/img-1.png -------------------------------------------------------------------------------- /public/assets/img/header/menu/grocery/img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/menu/grocery/img-2.png -------------------------------------------------------------------------------- /public/assets/img/header/menu/grocery/img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/menu/grocery/img-3.png -------------------------------------------------------------------------------- /public/assets/img/header/menu/grocery/img-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/menu/grocery/img-4.png -------------------------------------------------------------------------------- /public/assets/img/header/menu/grocery/img-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/menu/grocery/img-5.png -------------------------------------------------------------------------------- /public/assets/img/header/menu/grocery/img-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/menu/grocery/img-6.png -------------------------------------------------------------------------------- /public/assets/img/header/menu/menu-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/menu/menu-1.jpg -------------------------------------------------------------------------------- /public/assets/img/header/menu/menu-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/menu/menu-2.jpg -------------------------------------------------------------------------------- /public/assets/img/header/menu/menu-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/header/menu/menu-3.jpg -------------------------------------------------------------------------------- /public/assets/img/icon/Arrow - Right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/Arrow - Right.svg -------------------------------------------------------------------------------- /public/assets/img/icon/New folder/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/New folder/arrow-left.svg -------------------------------------------------------------------------------- /public/assets/img/icon/New folder/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/New folder/arrow-right.svg -------------------------------------------------------------------------------- /public/assets/img/icon/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/arrow-right.svg -------------------------------------------------------------------------------- /public/assets/img/icon/banner-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/banner-arrow-right.svg -------------------------------------------------------------------------------- /public/assets/img/icon/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/contact.png -------------------------------------------------------------------------------- /public/assets/img/icon/cross-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/cross-out.png -------------------------------------------------------------------------------- /public/assets/img/icon/language-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/language-flag.png -------------------------------------------------------------------------------- /public/assets/img/icon/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/location.svg -------------------------------------------------------------------------------- /public/assets/img/icon/login/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/login/apple.svg -------------------------------------------------------------------------------- /public/assets/img/icon/login/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/login/eye.svg -------------------------------------------------------------------------------- /public/assets/img/icon/login/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/login/facebook.svg -------------------------------------------------------------------------------- /public/assets/img/icon/login/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/login/google.svg -------------------------------------------------------------------------------- /public/assets/img/icon/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/mail.svg -------------------------------------------------------------------------------- /public/assets/img/icon/menu/acce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/menu/acce.svg -------------------------------------------------------------------------------- /public/assets/img/icon/menu/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/menu/camera.svg -------------------------------------------------------------------------------- /public/assets/img/icon/menu/cooking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/menu/cooking.svg -------------------------------------------------------------------------------- /public/assets/img/icon/menu/electronics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/menu/electronics.svg -------------------------------------------------------------------------------- /public/assets/img/icon/menu/gifts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/menu/gifts.svg -------------------------------------------------------------------------------- /public/assets/img/icon/menu/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/menu/home.svg -------------------------------------------------------------------------------- /public/assets/img/icon/menu/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/menu/mobile.svg -------------------------------------------------------------------------------- /public/assets/img/icon/menu/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/menu/monitor.svg -------------------------------------------------------------------------------- /public/assets/img/icon/menu/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/menu/user.svg -------------------------------------------------------------------------------- /public/assets/img/icon/menu/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/menu/video.svg -------------------------------------------------------------------------------- /public/assets/img/icon/payment-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/payment-option.png -------------------------------------------------------------------------------- /public/assets/img/icon/section-title-line-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/section-title-line-2.svg -------------------------------------------------------------------------------- /public/assets/img/icon/section-title-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/icon/section-title-line.svg -------------------------------------------------------------------------------- /public/assets/img/instagram/2/insta-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/2/insta-1.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/2/insta-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/2/insta-2.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/2/insta-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/2/insta-3.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/2/insta-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/2/insta-4.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/2/insta-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/2/insta-icon.png -------------------------------------------------------------------------------- /public/assets/img/instagram/3/instagram-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/3/instagram-1.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/3/instagram-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/3/instagram-2.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/3/instagram-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/3/instagram-3.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/3/instagram-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/3/instagram-4.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/3/instagram-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/3/instagram-5.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/3/instagram-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/3/instagram-6.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/4/instagram-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/4/instagram-1.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/4/instagram-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/4/instagram-2.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/4/instagram-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/4/instagram-3.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/4/instagram-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/4/instagram-4.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/4/instagram-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/4/instagram-5.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/4/instagram-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/4/instagram-6.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/instagram-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/instagram-1.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/instagram-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/instagram-2.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/instagram-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/instagram-3.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/instagram-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/instagram-4.jpg -------------------------------------------------------------------------------- /public/assets/img/instagram/instagram-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/instagram/instagram-5.jpg -------------------------------------------------------------------------------- /public/assets/img/login/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/login/laptop.png -------------------------------------------------------------------------------- /public/assets/img/login/login-shape-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/login/login-shape-1.png -------------------------------------------------------------------------------- /public/assets/img/login/login-shape-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/login/login-shape-2.png -------------------------------------------------------------------------------- /public/assets/img/login/login-shape-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/login/login-shape-3.png -------------------------------------------------------------------------------- /public/assets/img/login/login-shape-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/login/login-shape-4.png -------------------------------------------------------------------------------- /public/assets/img/login/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/login/man.png -------------------------------------------------------------------------------- /public/assets/img/login/shape-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/login/shape-1.png -------------------------------------------------------------------------------- /public/assets/img/login/shape-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/login/shape-2.png -------------------------------------------------------------------------------- /public/assets/img/login/shape-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/login/shape-3.png -------------------------------------------------------------------------------- /public/assets/img/login/shape-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/login/shape-4.png -------------------------------------------------------------------------------- /public/assets/img/logo/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/logo/favicon.png -------------------------------------------------------------------------------- /public/assets/img/logo/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/logo/logo-white.svg -------------------------------------------------------------------------------- /public/assets/img/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/logo/logo.svg -------------------------------------------------------------------------------- /public/assets/img/logo/preloader/preloader-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/logo/preloader/preloader-icon.svg -------------------------------------------------------------------------------- /public/assets/img/menu/menu-home-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/menu/menu-home-1.jpg -------------------------------------------------------------------------------- /public/assets/img/menu/menu-home-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/menu/menu-home-2.jpg -------------------------------------------------------------------------------- /public/assets/img/menu/menu-home-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/menu/menu-home-3.jpg -------------------------------------------------------------------------------- /public/assets/img/menu/menu-home-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/menu/menu-home-4.jpg -------------------------------------------------------------------------------- /public/assets/img/menu/menu-home-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/menu/menu-home-5.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-10.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-11.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-12.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-3.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-4.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-5.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-6.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-7.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-8.jpg -------------------------------------------------------------------------------- /public/assets/img/product/2/prodcut-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/2/prodcut-9.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-10.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-11.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-12.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-13.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-14.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-15.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-16.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-17.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-18.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-19.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-20.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-21.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-3.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-4.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-5.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-6.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-7.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-8.jpg -------------------------------------------------------------------------------- /public/assets/img/product/3/product-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/3/product-9.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-10.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-11.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-12.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-3.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-4.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-5.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-6.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-7.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-8.jpg -------------------------------------------------------------------------------- /public/assets/img/product/4/product-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/4/product-9.jpg -------------------------------------------------------------------------------- /public/assets/img/product/5/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/5/product-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/5/product-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/5/product-10.jpg -------------------------------------------------------------------------------- /public/assets/img/product/5/product-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/5/product-11.jpg -------------------------------------------------------------------------------- /public/assets/img/product/5/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/5/product-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/5/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/5/product-3.jpg -------------------------------------------------------------------------------- /public/assets/img/product/5/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/5/product-4.jpg -------------------------------------------------------------------------------- /public/assets/img/product/5/product-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/5/product-5.jpg -------------------------------------------------------------------------------- /public/assets/img/product/5/product-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/5/product-6.jpg -------------------------------------------------------------------------------- /public/assets/img/product/5/product-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/5/product-7.jpg -------------------------------------------------------------------------------- /public/assets/img/product/5/product-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/5/product-8.jpg -------------------------------------------------------------------------------- /public/assets/img/product/5/product-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/5/product-9.jpg -------------------------------------------------------------------------------- /public/assets/img/product/action/product-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/action/product-cart.svg -------------------------------------------------------------------------------- /public/assets/img/product/action/product-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/action/product-heart.svg -------------------------------------------------------------------------------- /public/assets/img/product/action/product-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/action/product-view.svg -------------------------------------------------------------------------------- /public/assets/img/product/cart/product-cart-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/cart/product-cart-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/cart/product-cart-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/cart/product-cart-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/cart/product-cart-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/cart/product-cart-3.jpg -------------------------------------------------------------------------------- /public/assets/img/product/cart/product-cart-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/cart/product-cart-4.jpg -------------------------------------------------------------------------------- /public/assets/img/product/cartmini/empty-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/cartmini/empty-cart.png -------------------------------------------------------------------------------- /public/assets/img/product/featured/featured-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/featured/featured-1.png -------------------------------------------------------------------------------- /public/assets/img/product/featured/featured-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/featured/featured-2.png -------------------------------------------------------------------------------- /public/assets/img/product/featured/featured-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/featured/featured-3.png -------------------------------------------------------------------------------- /public/assets/img/product/gadget/gadget-girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/gadget/gadget-girl.png -------------------------------------------------------------------------------- /public/assets/img/product/icons/check-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/icons/check-2.svg -------------------------------------------------------------------------------- /public/assets/img/product/icons/check-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/icons/check-3.svg -------------------------------------------------------------------------------- /public/assets/img/product/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/icons/check.svg -------------------------------------------------------------------------------- /public/assets/img/product/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/icons/filter.svg -------------------------------------------------------------------------------- /public/assets/img/product/icons/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/icons/grid.svg -------------------------------------------------------------------------------- /public/assets/img/product/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/icons/list.svg -------------------------------------------------------------------------------- /public/assets/img/product/icons/payment-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/icons/payment-option.png -------------------------------------------------------------------------------- /public/assets/img/product/list/product-list-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/list/product-list-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/list/product-list-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/list/product-list-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/list/product-list-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/list/product-list-3.jpg -------------------------------------------------------------------------------- /public/assets/img/product/list/product-list-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/list/product-list-4.jpg -------------------------------------------------------------------------------- /public/assets/img/product/list/product-list-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/list/product-list-5.jpg -------------------------------------------------------------------------------- /public/assets/img/product/list/product-list-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/list/product-list-6.jpg -------------------------------------------------------------------------------- /public/assets/img/product/list/product-list-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/list/product-list-7.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-10.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-11.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-12.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-13.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-14.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-15.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-16.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-17.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-3.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-4.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-5-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-5-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-5-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-5-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-5-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-5-3.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-5.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-6.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-7.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-8.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-9.jpg -------------------------------------------------------------------------------- /public/assets/img/product/product-tab-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/product-tab-line.svg -------------------------------------------------------------------------------- /public/assets/img/product/shop/brand/brand-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/brand/brand-1.png -------------------------------------------------------------------------------- /public/assets/img/product/shop/brand/brand-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/brand/brand-2.png -------------------------------------------------------------------------------- /public/assets/img/product/shop/brand/brand-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/brand/brand-3.png -------------------------------------------------------------------------------- /public/assets/img/product/shop/brand/brand-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/brand/brand-4.png -------------------------------------------------------------------------------- /public/assets/img/product/shop/brand/brand-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/brand/brand-5.png -------------------------------------------------------------------------------- /public/assets/img/product/shop/brand/brand-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/brand/brand-6.png -------------------------------------------------------------------------------- /public/assets/img/product/shop/brand/brand-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/brand/brand-7.png -------------------------------------------------------------------------------- /public/assets/img/product/shop/brand/brand-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/brand/brand-8.png -------------------------------------------------------------------------------- /public/assets/img/product/shop/sm/shop-sm-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/sm/shop-sm-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/shop/sm/shop-sm-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/sm/shop-sm-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/shop/sm/shop-sm-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/sm/shop-sm-3.jpg -------------------------------------------------------------------------------- /public/assets/img/product/shop/sm/shop-sm-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/shop/sm/shop-sm-4.jpg -------------------------------------------------------------------------------- /public/assets/img/product/side/pre-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/side/pre-title.png -------------------------------------------------------------------------------- /public/assets/img/product/side/side-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/side/side-1.png -------------------------------------------------------------------------------- /public/assets/img/product/sm/5/product-sm-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/5/product-sm-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/5/product-sm-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/5/product-sm-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/5/product-sm-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/5/product-sm-3.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/5/product-sm-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/5/product-sm-4.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/5/product-sm-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/5/product-sm-5.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/5/product-sm-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/5/product-sm-6.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/product-sm-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/product-sm-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/product-sm-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/product-sm-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/product-sm-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/product-sm-3.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/product-sm-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/product-sm-4.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/product-sm-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/product-sm-5.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/product-sm-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/product-sm-6.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/product-sm-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/product-sm-7.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/product-sm-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/product-sm-8.jpg -------------------------------------------------------------------------------- /public/assets/img/product/sm/product-sm-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/sm/product-sm-9.jpg -------------------------------------------------------------------------------- /public/assets/img/product/special/special-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/special/special-1.jpg -------------------------------------------------------------------------------- /public/assets/img/product/special/special-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/special/special-2.jpg -------------------------------------------------------------------------------- /public/assets/img/product/star_01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/product/star_01.svg -------------------------------------------------------------------------------- /public/assets/img/slider/2/shape/shape-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/2/shape/shape-1.png -------------------------------------------------------------------------------- /public/assets/img/slider/2/shape/shape-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/2/shape/shape-2.png -------------------------------------------------------------------------------- /public/assets/img/slider/2/shape/shape-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/2/shape/shape-3.png -------------------------------------------------------------------------------- /public/assets/img/slider/2/slider-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/2/slider-1.png -------------------------------------------------------------------------------- /public/assets/img/slider/2/slider-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/2/slider-2.png -------------------------------------------------------------------------------- /public/assets/img/slider/2/slider-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/2/slider-3.png -------------------------------------------------------------------------------- /public/assets/img/slider/3/slider-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/3/slider-1.jpg -------------------------------------------------------------------------------- /public/assets/img/slider/3/slider-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/3/slider-2.jpg -------------------------------------------------------------------------------- /public/assets/img/slider/3/slider-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/3/slider-3.jpg -------------------------------------------------------------------------------- /public/assets/img/slider/4/nav/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/4/nav/icon-1.png -------------------------------------------------------------------------------- /public/assets/img/slider/4/nav/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/4/nav/icon-2.png -------------------------------------------------------------------------------- /public/assets/img/slider/4/nav/icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/4/nav/icon-3.png -------------------------------------------------------------------------------- /public/assets/img/slider/4/nav/icon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/4/nav/icon-4.png -------------------------------------------------------------------------------- /public/assets/img/slider/4/slider-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/4/slider-1.png -------------------------------------------------------------------------------- /public/assets/img/slider/4/slider-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/4/slider-2.png -------------------------------------------------------------------------------- /public/assets/img/slider/4/slider-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/4/slider-3.png -------------------------------------------------------------------------------- /public/assets/img/slider/4/slider-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/4/slider-4.png -------------------------------------------------------------------------------- /public/assets/img/slider/5/shape/offer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/5/shape/offer.png -------------------------------------------------------------------------------- /public/assets/img/slider/5/shape/shape-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/5/shape/shape-1.png -------------------------------------------------------------------------------- /public/assets/img/slider/5/shape/shape-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/5/shape/shape-2.png -------------------------------------------------------------------------------- /public/assets/img/slider/5/shape/shape-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/5/shape/shape-3.png -------------------------------------------------------------------------------- /public/assets/img/slider/5/shape/shape-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/5/shape/shape-4.png -------------------------------------------------------------------------------- /public/assets/img/slider/5/slider-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/5/slider-1.png -------------------------------------------------------------------------------- /public/assets/img/slider/5/subtitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/5/subtitle.png -------------------------------------------------------------------------------- /public/assets/img/slider/slider-img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/slider-img-1.png -------------------------------------------------------------------------------- /public/assets/img/slider/slider-img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/slider-img-2.png -------------------------------------------------------------------------------- /public/assets/img/slider/slider-img-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/slider/slider-img-3.png -------------------------------------------------------------------------------- /public/assets/img/subscribe/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/subscribe/plane.png -------------------------------------------------------------------------------- /public/assets/img/users/user-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/users/user-1.jpg -------------------------------------------------------------------------------- /public/assets/img/users/user-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/users/user-10.jpg -------------------------------------------------------------------------------- /public/assets/img/users/user-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/users/user-11.jpg -------------------------------------------------------------------------------- /public/assets/img/users/user-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/users/user-2.jpg -------------------------------------------------------------------------------- /public/assets/img/users/user-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/users/user-3.jpg -------------------------------------------------------------------------------- /public/assets/img/users/user-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/users/user-4.jpg -------------------------------------------------------------------------------- /public/assets/img/users/user-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/users/user-5.jpg -------------------------------------------------------------------------------- /public/assets/img/users/user-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/users/user-6.jpg -------------------------------------------------------------------------------- /public/assets/img/users/user-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/users/user-7.jpg -------------------------------------------------------------------------------- /public/assets/img/users/user-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/users/user-8.jpg -------------------------------------------------------------------------------- /public/assets/img/users/user-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/img/users/user-9.jpg -------------------------------------------------------------------------------- /public/assets/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/mail.php -------------------------------------------------------------------------------- /public/assets/sass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/sass.txt -------------------------------------------------------------------------------- /public/assets/scss/components/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_accordion.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_animation.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_background.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_backtotop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_backtotop.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_breadcrumb.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_buttons.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_carousel.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_hotspot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_hotspot.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_modal.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_nice-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_nice-select.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_offcanvas.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_pagination.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_preloader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_preloader.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_rangeSlider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_rangeSlider.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_search.scss -------------------------------------------------------------------------------- /public/assets/scss/components/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/_tab.scss -------------------------------------------------------------------------------- /public/assets/scss/components/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/components/index.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/blog/_blog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/blog/_blog.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/blog/_blogGrid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/blog/_blogGrid.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/blog/_postbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/blog/_postbox.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/blog/_recent-post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/blog/_recent-post.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/blog/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/blog/_sidebar.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/blog/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/blog/index.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/ecommerce/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/ecommerce/_banner.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/ecommerce/_cart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/ecommerce/_cart.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/ecommerce/_coupon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/ecommerce/_coupon.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/ecommerce/_deal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/ecommerce/_deal.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/ecommerce/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/ecommerce/_modal.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/ecommerce/_order.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/ecommerce/_order.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/ecommerce/_shop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/ecommerce/_shop.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/ecommerce/_widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/ecommerce/_widget.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/ecommerce/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/ecommerce/index.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/footer/_footer-1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/footer/_footer-1.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/footer/_footer-2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/footer/_footer-2.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/footer/_footer-3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/footer/_footer-3.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/footer/_footer-4.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/footer/_footer-4.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/footer/_footer-5.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/footer/_footer-5.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/footer/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/footer/index.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/header/_header-1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/header/_header-1.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/header/_header-2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/header/_header-2.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/header/_header-3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/header/_header-3.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/header/_header-5.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/header/_header-5.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/header/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/header/index.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/index.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/menu/_meanmenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/menu/_meanmenu.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/menu/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/menu/_menu.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/menu/_mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/menu/_mobile.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/menu/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/menu/index.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/_about.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/_brand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/_brand.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/_contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/_contact.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/_cta.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/_cta.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/_error.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/_feature.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/_feature.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/_instagram.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/_instagram.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/_login.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/_profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/_profile.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/_slider.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/_subscribe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/_subscribe.scss -------------------------------------------------------------------------------- /public/assets/scss/layout/pages/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/layout/pages/index.scss -------------------------------------------------------------------------------- /public/assets/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/main.scss -------------------------------------------------------------------------------- /public/assets/scss/theme/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/theme/_common.scss -------------------------------------------------------------------------------- /public/assets/scss/theme/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/theme/_spacing.scss -------------------------------------------------------------------------------- /public/assets/scss/theme/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/theme/_theme.scss -------------------------------------------------------------------------------- /public/assets/scss/theme/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/theme/index.scss -------------------------------------------------------------------------------- /public/assets/scss/utils/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/utils/_breakpoints.scss -------------------------------------------------------------------------------- /public/assets/scss/utils/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/utils/_colors.scss -------------------------------------------------------------------------------- /public/assets/scss/utils/_extends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/utils/_extends.scss -------------------------------------------------------------------------------- /public/assets/scss/utils/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/utils/_mixins.scss -------------------------------------------------------------------------------- /public/assets/scss/utils/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/utils/_root.scss -------------------------------------------------------------------------------- /public/assets/scss/utils/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/utils/_typography.scss -------------------------------------------------------------------------------- /public/assets/scss/utils/_variables.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | $theme-prifix : 'tp'; -------------------------------------------------------------------------------- /public/assets/scss/utils/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/assets/scss/utils/index.scss -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/thirteen.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/components/about/jewelry-about.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/about/jewelry-about.jsx -------------------------------------------------------------------------------- /src/components/banner/banner-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/banner/banner-area.jsx -------------------------------------------------------------------------------- /src/components/banner/beauty-banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/banner/beauty-banner.jsx -------------------------------------------------------------------------------- /src/components/banner/fashion-banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/banner/fashion-banner.jsx -------------------------------------------------------------------------------- /src/components/banner/jewelry-banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/banner/jewelry-banner.jsx -------------------------------------------------------------------------------- /src/components/blog/blog-grid/blog-grid-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/blog/blog-grid/blog-grid-area.jsx -------------------------------------------------------------------------------- /src/components/blog/blog-grid/grid-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/blog/blog-grid/grid-item.jsx -------------------------------------------------------------------------------- /src/components/blog/blog-grid/list-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/blog/blog-grid/list-item.jsx -------------------------------------------------------------------------------- /src/components/blog/blog-grid/section-title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/blog/blog-grid/section-title.jsx -------------------------------------------------------------------------------- /src/components/blog/blog-postox/blog-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/blog/blog-postox/blog-item.jsx -------------------------------------------------------------------------------- /src/components/blog/blog-postox/blog-sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/blog/blog-postox/blog-sidebar.jsx -------------------------------------------------------------------------------- /src/components/blog/electronic/blog-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/blog/electronic/blog-area.jsx -------------------------------------------------------------------------------- /src/components/blog/electronic/blog-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/blog/electronic/blog-item.jsx -------------------------------------------------------------------------------- /src/components/blog/fashion/blog-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/blog/fashion/blog-area.jsx -------------------------------------------------------------------------------- /src/components/blog/fashion/blog-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/blog/fashion/blog-item.jsx -------------------------------------------------------------------------------- /src/components/brand/jewelry-brands.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/brand/jewelry-brands.jsx -------------------------------------------------------------------------------- /src/components/breadcrumb/blog-breadcrumb.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/breadcrumb/blog-breadcrumb.jsx -------------------------------------------------------------------------------- /src/components/breadcrumb/common-breadcrumb.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/breadcrumb/common-breadcrumb.jsx -------------------------------------------------------------------------------- /src/components/breadcrumb/contact-breadcrumb.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/breadcrumb/contact-breadcrumb.jsx -------------------------------------------------------------------------------- /src/components/breadcrumb/shop-breadcrumb.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/breadcrumb/shop-breadcrumb.jsx -------------------------------------------------------------------------------- /src/components/cart-wishlist/cart-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/cart-wishlist/cart-area.jsx -------------------------------------------------------------------------------- /src/components/cart-wishlist/cart-checkout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/cart-wishlist/cart-checkout.jsx -------------------------------------------------------------------------------- /src/components/cart-wishlist/cart-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/cart-wishlist/cart-item.jsx -------------------------------------------------------------------------------- /src/components/cart-wishlist/wishlist-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/cart-wishlist/wishlist-area.jsx -------------------------------------------------------------------------------- /src/components/cart-wishlist/wishlist-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/cart-wishlist/wishlist-item.jsx -------------------------------------------------------------------------------- /src/components/categories/beauty-category.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/categories/beauty-category.jsx -------------------------------------------------------------------------------- /src/components/categories/fashion-category.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/categories/fashion-category.jsx -------------------------------------------------------------------------------- /src/components/categories/shop-category-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/categories/shop-category-area.jsx -------------------------------------------------------------------------------- /src/components/checkout/checkout-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/checkout/checkout-area.jsx -------------------------------------------------------------------------------- /src/components/checkout/checkout-coupon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/checkout/checkout-coupon.jsx -------------------------------------------------------------------------------- /src/components/checkout/checkout-login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/checkout/checkout-login.jsx -------------------------------------------------------------------------------- /src/components/checkout/checkout-order-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/checkout/checkout-order-area.jsx -------------------------------------------------------------------------------- /src/components/common/back-to-top.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/common/back-to-top.jsx -------------------------------------------------------------------------------- /src/components/common/cart-mini-sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/common/cart-mini-sidebar.jsx -------------------------------------------------------------------------------- /src/components/common/error-msg.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/common/error-msg.jsx -------------------------------------------------------------------------------- /src/components/common/mobile-menus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/common/mobile-menus.jsx -------------------------------------------------------------------------------- /src/components/common/off-canvas.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/common/off-canvas.jsx -------------------------------------------------------------------------------- /src/components/common/popup-video.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/common/popup-video.jsx -------------------------------------------------------------------------------- /src/components/common/product-modal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/common/product-modal/index.jsx -------------------------------------------------------------------------------- /src/components/common/render-cart-progress.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/common/render-cart-progress.jsx -------------------------------------------------------------------------------- /src/components/common/shop-filter-offcanvas.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/common/shop-filter-offcanvas.jsx -------------------------------------------------------------------------------- /src/components/common/timer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/common/timer.jsx -------------------------------------------------------------------------------- /src/components/compare/compare-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/compare/compare-area.jsx -------------------------------------------------------------------------------- /src/components/contact/contact-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/contact/contact-area.jsx -------------------------------------------------------------------------------- /src/components/contact/contact-map.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/contact/contact-map.jsx -------------------------------------------------------------------------------- /src/components/coupon/coupon-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/coupon/coupon-area.jsx -------------------------------------------------------------------------------- /src/components/coupon/coupon-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/coupon/coupon-item.jsx -------------------------------------------------------------------------------- /src/components/coupon/offer-timer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/coupon/offer-timer.jsx -------------------------------------------------------------------------------- /src/components/cta/cta-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/cta/cta-area.jsx -------------------------------------------------------------------------------- /src/components/features/beauty-featured.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/features/beauty-featured.jsx -------------------------------------------------------------------------------- /src/components/features/feature-area-2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/features/feature-area-2.jsx -------------------------------------------------------------------------------- /src/components/features/feature-area-3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/features/feature-area-3.jsx -------------------------------------------------------------------------------- /src/components/features/feature-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/features/feature-area.jsx -------------------------------------------------------------------------------- /src/components/forms/blog-post-comment-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/forms/blog-post-comment-form.jsx -------------------------------------------------------------------------------- /src/components/forms/contact-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/forms/contact-form.jsx -------------------------------------------------------------------------------- /src/components/forms/forgot-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/forms/forgot-form.jsx -------------------------------------------------------------------------------- /src/components/forms/header-search-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/forms/header-search-form.jsx -------------------------------------------------------------------------------- /src/components/forms/login-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/forms/login-form.jsx -------------------------------------------------------------------------------- /src/components/forms/register-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/forms/register-form.jsx -------------------------------------------------------------------------------- /src/components/forms/review-form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/forms/review-form.jsx -------------------------------------------------------------------------------- /src/components/hero-banner/home-hero-slider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/hero-banner/home-hero-slider.jsx -------------------------------------------------------------------------------- /src/components/instagram/instagram-area-2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/instagram/instagram-area-2.jsx -------------------------------------------------------------------------------- /src/components/instagram/instagram-area-3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/instagram/instagram-area-3.jsx -------------------------------------------------------------------------------- /src/components/instagram/instagram-area-4.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/instagram/instagram-area-4.jsx -------------------------------------------------------------------------------- /src/components/instagram/instagram-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/instagram/instagram-area.jsx -------------------------------------------------------------------------------- /src/components/loader/coupon-loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/loader/coupon-loader.jsx -------------------------------------------------------------------------------- /src/components/loader/home/home-cate-loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/loader/home/home-cate-loader.jsx -------------------------------------------------------------------------------- /src/components/loader/home/home-prd-loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/loader/home/home-prd-loader.jsx -------------------------------------------------------------------------------- /src/components/loader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/loader/index.jsx -------------------------------------------------------------------------------- /src/components/loader/loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/loader/loader.jsx -------------------------------------------------------------------------------- /src/components/loader/prd-details-loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/loader/prd-details-loader.jsx -------------------------------------------------------------------------------- /src/components/loader/search-prd-loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/loader/search-prd-loader.jsx -------------------------------------------------------------------------------- /src/components/loader/shop/shop-brand-loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/loader/shop/shop-brand-loader.jsx -------------------------------------------------------------------------------- /src/components/loader/shop/shop-loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/loader/shop/shop-loader.jsx -------------------------------------------------------------------------------- /src/components/login-register/forgot-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/login-register/forgot-area.jsx -------------------------------------------------------------------------------- /src/components/login-register/google-sign-up.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/login-register/google-sign-up.jsx -------------------------------------------------------------------------------- /src/components/login-register/login-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/login-register/login-area.jsx -------------------------------------------------------------------------------- /src/components/login-register/login-shapes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/login-register/login-shapes.jsx -------------------------------------------------------------------------------- /src/components/login-register/register-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/login-register/register-area.jsx -------------------------------------------------------------------------------- /src/components/my-account/change-password.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/my-account/change-password.jsx -------------------------------------------------------------------------------- /src/components/my-account/my-orders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/my-account/my-orders.jsx -------------------------------------------------------------------------------- /src/components/my-account/nav-profile-tab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/my-account/nav-profile-tab.jsx -------------------------------------------------------------------------------- /src/components/my-account/profile-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/my-account/profile-area.jsx -------------------------------------------------------------------------------- /src/components/my-account/profile-info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/my-account/profile-info.jsx -------------------------------------------------------------------------------- /src/components/my-account/profile-nav-tab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/my-account/profile-nav-tab.jsx -------------------------------------------------------------------------------- /src/components/my-account/profile-shape.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/my-account/profile-shape.jsx -------------------------------------------------------------------------------- /src/components/offerHeader/OfferCouponArea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/offerHeader/OfferCouponArea.jsx -------------------------------------------------------------------------------- /src/components/offerHeader/OfferCouponItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/offerHeader/OfferCouponItem.jsx -------------------------------------------------------------------------------- /src/components/product-details/review-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/product-details/review-item.jsx -------------------------------------------------------------------------------- /src/components/products/beauty/product-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/products/beauty/product-area.jsx -------------------------------------------------------------------------------- /src/components/products/beauty/product-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/products/beauty/product-item.jsx -------------------------------------------------------------------------------- /src/components/products/fashion/product-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/products/fashion/product-area.jsx -------------------------------------------------------------------------------- /src/components/products/fashion/product-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/products/fashion/product-item.jsx -------------------------------------------------------------------------------- /src/components/products/jewelry/product-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/products/jewelry/product-area.jsx -------------------------------------------------------------------------------- /src/components/products/jewelry/product-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/products/jewelry/product-item.jsx -------------------------------------------------------------------------------- /src/components/seo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/seo.jsx -------------------------------------------------------------------------------- /src/components/shop/shop-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/shop/shop-area.jsx -------------------------------------------------------------------------------- /src/components/shop/shop-filter/color-filter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/shop/shop-filter/color-filter.jsx -------------------------------------------------------------------------------- /src/components/shop/shop-filter/price-filter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/shop/shop-filter/price-filter.jsx -------------------------------------------------------------------------------- /src/components/shop/shop-filter/reset-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/shop/shop-filter/reset-button.jsx -------------------------------------------------------------------------------- /src/components/shop/shop-hidden-sidebar-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/shop/shop-hidden-sidebar-area.jsx -------------------------------------------------------------------------------- /src/components/shop/shop-list-item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/shop/shop-list-item.jsx -------------------------------------------------------------------------------- /src/components/shop/shop-right-area.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/shop/shop-right-area.jsx -------------------------------------------------------------------------------- /src/components/shop/shop-top-left.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/shop/shop-top-left.jsx -------------------------------------------------------------------------------- /src/components/shop/shop-top-right.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/components/shop/shop-top-right.jsx -------------------------------------------------------------------------------- /src/data/blog-comment-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/data/blog-comment-data.js -------------------------------------------------------------------------------- /src/data/blog-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/data/blog-data.js -------------------------------------------------------------------------------- /src/data/menu-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/data/menu-data.js -------------------------------------------------------------------------------- /src/data/social-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/data/social-data.js -------------------------------------------------------------------------------- /src/data/testimonial-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/data/testimonial-data.js -------------------------------------------------------------------------------- /src/hooks/use-auth-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/hooks/use-auth-check.js -------------------------------------------------------------------------------- /src/hooks/use-cart-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/hooks/use-cart-info.js -------------------------------------------------------------------------------- /src/hooks/use-checkout-submit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/hooks/use-checkout-submit.js -------------------------------------------------------------------------------- /src/hooks/use-pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/hooks/use-pagination.js -------------------------------------------------------------------------------- /src/hooks/use-search-form-submit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/hooks/use-search-form-submit.js -------------------------------------------------------------------------------- /src/hooks/use-sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/hooks/use-sticky.js -------------------------------------------------------------------------------- /src/layout/footers/footer-2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/layout/footers/footer-2.jsx -------------------------------------------------------------------------------- /src/layout/footers/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/layout/footers/footer.jsx -------------------------------------------------------------------------------- /src/layout/headers/header-2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/layout/headers/header-2.jsx -------------------------------------------------------------------------------- /src/layout/headers/header-3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/layout/headers/header-3.jsx -------------------------------------------------------------------------------- /src/layout/headers/header-4.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/layout/headers/header-4.jsx -------------------------------------------------------------------------------- /src/layout/headers/header-com/menus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/layout/headers/header-com/menus.jsx -------------------------------------------------------------------------------- /src/layout/headers/header-com/search-bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/layout/headers/header-com/search-bar.jsx -------------------------------------------------------------------------------- /src/layout/headers/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/layout/headers/header.jsx -------------------------------------------------------------------------------- /src/layout/wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/layout/wrapper.jsx -------------------------------------------------------------------------------- /src/lib/back-to-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/lib/back-to-top.js -------------------------------------------------------------------------------- /src/pages/404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/404.jsx -------------------------------------------------------------------------------- /src/pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/_app.jsx -------------------------------------------------------------------------------- /src/pages/_document.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/_document.jsx -------------------------------------------------------------------------------- /src/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/api/hello.js -------------------------------------------------------------------------------- /src/pages/blog-details-2/[id].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/blog-details-2/[id].jsx -------------------------------------------------------------------------------- /src/pages/blog-details-2/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/blog-details-2/index.jsx -------------------------------------------------------------------------------- /src/pages/blog-details/[id].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/blog-details/[id].jsx -------------------------------------------------------------------------------- /src/pages/blog-details/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/blog-details/index.jsx -------------------------------------------------------------------------------- /src/pages/blog-grid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/blog-grid.jsx -------------------------------------------------------------------------------- /src/pages/blog-list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/blog-list.jsx -------------------------------------------------------------------------------- /src/pages/blog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/blog.jsx -------------------------------------------------------------------------------- /src/pages/cart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/cart.jsx -------------------------------------------------------------------------------- /src/pages/checkout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/checkout.jsx -------------------------------------------------------------------------------- /src/pages/compare.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/compare.jsx -------------------------------------------------------------------------------- /src/pages/contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/contact.jsx -------------------------------------------------------------------------------- /src/pages/coupon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/coupon.jsx -------------------------------------------------------------------------------- /src/pages/email-verify/[token].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/email-verify/[token].js -------------------------------------------------------------------------------- /src/pages/forget-password/[token].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/forget-password/[token].jsx -------------------------------------------------------------------------------- /src/pages/forgot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/forgot.jsx -------------------------------------------------------------------------------- /src/pages/home-2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/home-2.jsx -------------------------------------------------------------------------------- /src/pages/home-3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/home-3.jsx -------------------------------------------------------------------------------- /src/pages/home-4.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/home-4.jsx -------------------------------------------------------------------------------- /src/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/index.jsx -------------------------------------------------------------------------------- /src/pages/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/login.jsx -------------------------------------------------------------------------------- /src/pages/order/[id].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/order/[id].jsx -------------------------------------------------------------------------------- /src/pages/product-details-countdown/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/product-details-countdown/index.jsx -------------------------------------------------------------------------------- /src/pages/product-details-swatches/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/product-details-swatches/index.jsx -------------------------------------------------------------------------------- /src/pages/product-details-video/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/product-details-video/index.jsx -------------------------------------------------------------------------------- /src/pages/product-details/[id].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/product-details/[id].jsx -------------------------------------------------------------------------------- /src/pages/product-details/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/product-details/index.jsx -------------------------------------------------------------------------------- /src/pages/profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/profile.jsx -------------------------------------------------------------------------------- /src/pages/register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/register.jsx -------------------------------------------------------------------------------- /src/pages/search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/search.jsx -------------------------------------------------------------------------------- /src/pages/shop-category.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/shop-category.jsx -------------------------------------------------------------------------------- /src/pages/shop-hidden-sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/shop-hidden-sidebar.jsx -------------------------------------------------------------------------------- /src/pages/shop-right-sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/shop-right-sidebar.jsx -------------------------------------------------------------------------------- /src/pages/shop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/shop.jsx -------------------------------------------------------------------------------- /src/pages/wishlist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/pages/wishlist.jsx -------------------------------------------------------------------------------- /src/redux/api/apiSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/api/apiSlice.js -------------------------------------------------------------------------------- /src/redux/features/auth/authApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/auth/authApi.js -------------------------------------------------------------------------------- /src/redux/features/auth/authSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/auth/authSlice.js -------------------------------------------------------------------------------- /src/redux/features/brandApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/brandApi.js -------------------------------------------------------------------------------- /src/redux/features/cartSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/cartSlice.js -------------------------------------------------------------------------------- /src/redux/features/categoryApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/categoryApi.js -------------------------------------------------------------------------------- /src/redux/features/compareSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/compareSlice.js -------------------------------------------------------------------------------- /src/redux/features/coupon/couponApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/coupon/couponApi.js -------------------------------------------------------------------------------- /src/redux/features/coupon/couponSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/coupon/couponSlice.js -------------------------------------------------------------------------------- /src/redux/features/order/orderApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/order/orderApi.js -------------------------------------------------------------------------------- /src/redux/features/order/orderSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/order/orderSlice.js -------------------------------------------------------------------------------- /src/redux/features/productApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/productApi.js -------------------------------------------------------------------------------- /src/redux/features/productModalSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/productModalSlice.js -------------------------------------------------------------------------------- /src/redux/features/reviewApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/reviewApi.js -------------------------------------------------------------------------------- /src/redux/features/shop-filter-slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/shop-filter-slice.js -------------------------------------------------------------------------------- /src/redux/features/wishlist-slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/features/wishlist-slice.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/svg/add-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/add-cart.js -------------------------------------------------------------------------------- /src/svg/animated-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/animated-line.js -------------------------------------------------------------------------------- /src/svg/arrow-next-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/arrow-next-2.js -------------------------------------------------------------------------------- /src/svg/arrow-next-sm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/arrow-next-sm.js -------------------------------------------------------------------------------- /src/svg/arrow-next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/arrow-next.js -------------------------------------------------------------------------------- /src/svg/arrow-prev-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/arrow-prev-2.js -------------------------------------------------------------------------------- /src/svg/arrow-prev-sm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/arrow-prev-sm.js -------------------------------------------------------------------------------- /src/svg/arrow-prev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/arrow-prev.js -------------------------------------------------------------------------------- /src/svg/arrow-right-long-prev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/arrow-right-long-prev.js -------------------------------------------------------------------------------- /src/svg/arrow-right-long.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/arrow-right-long.js -------------------------------------------------------------------------------- /src/svg/arrow-right-sm-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/arrow-right-sm-2.js -------------------------------------------------------------------------------- /src/svg/arrow-right-sm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/arrow-right-sm.js -------------------------------------------------------------------------------- /src/svg/arrow-right.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/arrow-right.js -------------------------------------------------------------------------------- /src/svg/ask-a-question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/ask-a-question.js -------------------------------------------------------------------------------- /src/svg/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/box.js -------------------------------------------------------------------------------- /src/svg/cart-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/cart-2.js -------------------------------------------------------------------------------- /src/svg/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/cart.js -------------------------------------------------------------------------------- /src/svg/category-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/category-menu.js -------------------------------------------------------------------------------- /src/svg/close-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/close-2.js -------------------------------------------------------------------------------- /src/svg/close-eye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/close-eye.js -------------------------------------------------------------------------------- /src/svg/close.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/close.js -------------------------------------------------------------------------------- /src/svg/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/comment.js -------------------------------------------------------------------------------- /src/svg/compare-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/compare-2.js -------------------------------------------------------------------------------- /src/svg/compare-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/compare-3.js -------------------------------------------------------------------------------- /src/svg/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/compare.js -------------------------------------------------------------------------------- /src/svg/cosmetics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/cosmetics.js -------------------------------------------------------------------------------- /src/svg/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/date.js -------------------------------------------------------------------------------- /src/svg/delivery-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/delivery-2.js -------------------------------------------------------------------------------- /src/svg/delivery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/delivery.js -------------------------------------------------------------------------------- /src/svg/discount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/discount.js -------------------------------------------------------------------------------- /src/svg/email-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/email-2.js -------------------------------------------------------------------------------- /src/svg/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/email.js -------------------------------------------------------------------------------- /src/svg/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/facebook.js -------------------------------------------------------------------------------- /src/svg/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/filter.js -------------------------------------------------------------------------------- /src/svg/grid-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/grid-tab.js -------------------------------------------------------------------------------- /src/svg/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/index.js -------------------------------------------------------------------------------- /src/svg/info-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/info-details.js -------------------------------------------------------------------------------- /src/svg/list-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/list-tab.js -------------------------------------------------------------------------------- /src/svg/location-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/location-2.js -------------------------------------------------------------------------------- /src/svg/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/location.js -------------------------------------------------------------------------------- /src/svg/meckoup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/meckoup.js -------------------------------------------------------------------------------- /src/svg/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/menu.js -------------------------------------------------------------------------------- /src/svg/minus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/minus.js -------------------------------------------------------------------------------- /src/svg/next-arr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/next-arr.js -------------------------------------------------------------------------------- /src/svg/next-long-arr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/next-long-arr.js -------------------------------------------------------------------------------- /src/svg/open-eye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/open-eye.js -------------------------------------------------------------------------------- /src/svg/pagination-next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/pagination-next.js -------------------------------------------------------------------------------- /src/svg/pagination-prev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/pagination-prev.js -------------------------------------------------------------------------------- /src/svg/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/pause.js -------------------------------------------------------------------------------- /src/svg/phone-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/phone-2.js -------------------------------------------------------------------------------- /src/svg/phone-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/phone-3.js -------------------------------------------------------------------------------- /src/svg/phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/phone.js -------------------------------------------------------------------------------- /src/svg/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/play.js -------------------------------------------------------------------------------- /src/svg/plus-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/plus-2.js -------------------------------------------------------------------------------- /src/svg/plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/plus.js -------------------------------------------------------------------------------- /src/svg/prev-arr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/prev-arr.js -------------------------------------------------------------------------------- /src/svg/prev-long-arr-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/prev-long-arr-2.js -------------------------------------------------------------------------------- /src/svg/prev-long-arr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/prev-long-arr.js -------------------------------------------------------------------------------- /src/svg/processing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/processing.js -------------------------------------------------------------------------------- /src/svg/quick-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/quick-view.js -------------------------------------------------------------------------------- /src/svg/refund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/refund.js -------------------------------------------------------------------------------- /src/svg/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/search.js -------------------------------------------------------------------------------- /src/svg/shape-line-sm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/shape-line-sm.js -------------------------------------------------------------------------------- /src/svg/shape-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/shape-line.js -------------------------------------------------------------------------------- /src/svg/shipping-car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/shipping-car.js -------------------------------------------------------------------------------- /src/svg/slider-next-btn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/slider-next-btn.js -------------------------------------------------------------------------------- /src/svg/slider-prev-btn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/slider-prev-btn.js -------------------------------------------------------------------------------- /src/svg/sm-dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/sm-dot.js -------------------------------------------------------------------------------- /src/svg/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/support.js -------------------------------------------------------------------------------- /src/svg/tab-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/tab-line.js -------------------------------------------------------------------------------- /src/svg/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/tags.js -------------------------------------------------------------------------------- /src/svg/text-shape-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/text-shape-line.js -------------------------------------------------------------------------------- /src/svg/text-shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/text-shape.js -------------------------------------------------------------------------------- /src/svg/truck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/truck.js -------------------------------------------------------------------------------- /src/svg/user-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/user-2.js -------------------------------------------------------------------------------- /src/svg/user-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/user-3.js -------------------------------------------------------------------------------- /src/svg/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/user.js -------------------------------------------------------------------------------- /src/svg/vegan-product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/vegan-product.js -------------------------------------------------------------------------------- /src/svg/wishlist-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/wishlist-2.js -------------------------------------------------------------------------------- /src/svg/wishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/svg/wishlist.js -------------------------------------------------------------------------------- /src/ui/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/ui/Pagination.jsx -------------------------------------------------------------------------------- /src/ui/input-range/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/ui/input-range/index.jsx -------------------------------------------------------------------------------- /src/ui/nice-select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/ui/nice-select.jsx -------------------------------------------------------------------------------- /src/utils/localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/utils/localstorage.js -------------------------------------------------------------------------------- /src/utils/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamed-Hasan/shofy-Beauty-and-Cosmetics-ecommerce-client/HEAD/src/utils/toast.js --------------------------------------------------------------------------------