├── .gitattributes ├── 404.html ├── README.md ├── assets ├── css │ ├── custom.css │ ├── styles.css │ └── tailwind.css ├── images │ ├── 404.jpg │ ├── banner1.jpg │ ├── brands │ │ ├── html.svg │ │ ├── js.svg │ │ ├── laravel.svg │ │ ├── php.svg │ │ ├── react.svg │ │ ├── tailwind.svg │ │ └── typescript.svg │ ├── cart-shopping.svg │ ├── cat-image1.jpg │ ├── cat-image4.jpg │ ├── cat-image5.jpg │ ├── customer-stories.jpg │ ├── fashion-trends.jpg │ ├── filter-down-arrow.svg │ ├── filter-up-arrow.svg │ ├── main-slider │ │ ├── 2.png │ │ ├── 4.jpg │ │ └── 5.jpg │ ├── products │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ └── 8.jpg │ ├── search-icon.svg │ ├── single-product │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ └── 5.jpg │ ├── social_icons │ │ ├── facebook.svg │ │ ├── instagram.svg │ │ ├── paypal.svg │ │ ├── pinterest.svg │ │ ├── stripe.svg │ │ ├── twitter.svg │ │ ├── viber.svg │ │ ├── visa.svg │ │ └── youtube.svg │ ├── stylisng-tips.jpg │ ├── template-logo.png │ └── template-white-logo.png └── js │ └── script.js ├── cart.html ├── checkout.html ├── index.html ├── package.json ├── register.html ├── shop.html ├── single-product-page.html └── tailwind.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/.gitattributes -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/404.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/css/custom.css -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/css/styles.css -------------------------------------------------------------------------------- /assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/css/tailwind.css -------------------------------------------------------------------------------- /assets/images/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/404.jpg -------------------------------------------------------------------------------- /assets/images/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/banner1.jpg -------------------------------------------------------------------------------- /assets/images/brands/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/brands/html.svg -------------------------------------------------------------------------------- /assets/images/brands/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/brands/js.svg -------------------------------------------------------------------------------- /assets/images/brands/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/brands/laravel.svg -------------------------------------------------------------------------------- /assets/images/brands/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/brands/php.svg -------------------------------------------------------------------------------- /assets/images/brands/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/brands/react.svg -------------------------------------------------------------------------------- /assets/images/brands/tailwind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/brands/tailwind.svg -------------------------------------------------------------------------------- /assets/images/brands/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/brands/typescript.svg -------------------------------------------------------------------------------- /assets/images/cart-shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/cart-shopping.svg -------------------------------------------------------------------------------- /assets/images/cat-image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/cat-image1.jpg -------------------------------------------------------------------------------- /assets/images/cat-image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/cat-image4.jpg -------------------------------------------------------------------------------- /assets/images/cat-image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/cat-image5.jpg -------------------------------------------------------------------------------- /assets/images/customer-stories.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/customer-stories.jpg -------------------------------------------------------------------------------- /assets/images/fashion-trends.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/fashion-trends.jpg -------------------------------------------------------------------------------- /assets/images/filter-down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/filter-down-arrow.svg -------------------------------------------------------------------------------- /assets/images/filter-up-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/filter-up-arrow.svg -------------------------------------------------------------------------------- /assets/images/main-slider/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/main-slider/2.png -------------------------------------------------------------------------------- /assets/images/main-slider/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/main-slider/4.jpg -------------------------------------------------------------------------------- /assets/images/main-slider/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/main-slider/5.jpg -------------------------------------------------------------------------------- /assets/images/products/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/products/1.jpg -------------------------------------------------------------------------------- /assets/images/products/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/products/2.jpg -------------------------------------------------------------------------------- /assets/images/products/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/products/3.jpg -------------------------------------------------------------------------------- /assets/images/products/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/products/4.jpg -------------------------------------------------------------------------------- /assets/images/products/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/products/5.jpg -------------------------------------------------------------------------------- /assets/images/products/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/products/6.jpg -------------------------------------------------------------------------------- /assets/images/products/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/products/7.jpg -------------------------------------------------------------------------------- /assets/images/products/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/products/8.jpg -------------------------------------------------------------------------------- /assets/images/search-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/search-icon.svg -------------------------------------------------------------------------------- /assets/images/single-product/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/single-product/1.jpg -------------------------------------------------------------------------------- /assets/images/single-product/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/single-product/2.jpg -------------------------------------------------------------------------------- /assets/images/single-product/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/single-product/3.jpg -------------------------------------------------------------------------------- /assets/images/single-product/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/single-product/4.jpg -------------------------------------------------------------------------------- /assets/images/single-product/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/single-product/5.jpg -------------------------------------------------------------------------------- /assets/images/social_icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/social_icons/facebook.svg -------------------------------------------------------------------------------- /assets/images/social_icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/social_icons/instagram.svg -------------------------------------------------------------------------------- /assets/images/social_icons/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/social_icons/paypal.svg -------------------------------------------------------------------------------- /assets/images/social_icons/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/social_icons/pinterest.svg -------------------------------------------------------------------------------- /assets/images/social_icons/stripe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/social_icons/stripe.svg -------------------------------------------------------------------------------- /assets/images/social_icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/social_icons/twitter.svg -------------------------------------------------------------------------------- /assets/images/social_icons/viber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/social_icons/viber.svg -------------------------------------------------------------------------------- /assets/images/social_icons/visa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/social_icons/visa.svg -------------------------------------------------------------------------------- /assets/images/social_icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/social_icons/youtube.svg -------------------------------------------------------------------------------- /assets/images/stylisng-tips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/stylisng-tips.jpg -------------------------------------------------------------------------------- /assets/images/template-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/template-logo.png -------------------------------------------------------------------------------- /assets/images/template-white-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/images/template-white-logo.png -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/assets/js/script.js -------------------------------------------------------------------------------- /cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/cart.html -------------------------------------------------------------------------------- /checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/checkout.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/package.json -------------------------------------------------------------------------------- /register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/register.html -------------------------------------------------------------------------------- /shop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/shop.html -------------------------------------------------------------------------------- /single-product-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/single-product-page.html -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacemadev/Tailstore/HEAD/tailwind.config.js --------------------------------------------------------------------------------