├── README.md ├── assets ├── css │ └── style.css ├── images │ ├── about-img-1.svg │ ├── about-img-2.svg │ ├── about-img-3.svg │ ├── about-img-4.svg │ ├── app-banner.png │ ├── apple-store.svg │ ├── check-circle.svg │ ├── contact-icon-1.svg │ ├── contact-icon-2.svg │ ├── contact-icon-3.svg │ ├── features-banner-1.gif │ ├── features-banner-2.png │ ├── features-icon-1.svg │ ├── features-icon-2.svg │ ├── features-icon-3.svg │ ├── features-icon-4.svg │ ├── footer-img.png │ ├── hero-banner.png │ ├── play-store.svg │ ├── service-1.gif │ ├── service-2.gif │ ├── service-3.gif │ └── stats-banner.png └── js │ └── script.js ├── favicon.svg ├── index.html ├── index.txt ├── readme-images └── desktop.png └── style-guide.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/images/about-img-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/about-img-1.svg -------------------------------------------------------------------------------- /assets/images/about-img-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/about-img-2.svg -------------------------------------------------------------------------------- /assets/images/about-img-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/about-img-3.svg -------------------------------------------------------------------------------- /assets/images/about-img-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/about-img-4.svg -------------------------------------------------------------------------------- /assets/images/app-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/app-banner.png -------------------------------------------------------------------------------- /assets/images/apple-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/apple-store.svg -------------------------------------------------------------------------------- /assets/images/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/check-circle.svg -------------------------------------------------------------------------------- /assets/images/contact-icon-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/contact-icon-1.svg -------------------------------------------------------------------------------- /assets/images/contact-icon-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/contact-icon-2.svg -------------------------------------------------------------------------------- /assets/images/contact-icon-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/contact-icon-3.svg -------------------------------------------------------------------------------- /assets/images/features-banner-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/features-banner-1.gif -------------------------------------------------------------------------------- /assets/images/features-banner-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/features-banner-2.png -------------------------------------------------------------------------------- /assets/images/features-icon-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/features-icon-1.svg -------------------------------------------------------------------------------- /assets/images/features-icon-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/features-icon-2.svg -------------------------------------------------------------------------------- /assets/images/features-icon-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/features-icon-3.svg -------------------------------------------------------------------------------- /assets/images/features-icon-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/features-icon-4.svg -------------------------------------------------------------------------------- /assets/images/footer-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/footer-img.png -------------------------------------------------------------------------------- /assets/images/hero-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/hero-banner.png -------------------------------------------------------------------------------- /assets/images/play-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/play-store.svg -------------------------------------------------------------------------------- /assets/images/service-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/service-1.gif -------------------------------------------------------------------------------- /assets/images/service-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/service-2.gif -------------------------------------------------------------------------------- /assets/images/service-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/service-3.gif -------------------------------------------------------------------------------- /assets/images/stats-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/images/stats-banner.png -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/assets/js/script.js -------------------------------------------------------------------------------- /favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/favicon.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/index.html -------------------------------------------------------------------------------- /index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/index.txt -------------------------------------------------------------------------------- /readme-images/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/readme-images/desktop.png -------------------------------------------------------------------------------- /style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithsadee/techx/HEAD/style-guide.md --------------------------------------------------------------------------------