├── LICENSE ├── Pages ├── 404.ejs ├── about.ejs ├── index.ejs ├── parts │ ├── footer.ejs │ └── header.ejs ├── privacy.ejs ├── services.ejs ├── status.ejs └── terms.ejs ├── README.md ├── assets ├── css │ ├── 404.css │ └── style.css ├── img │ ├── about.jpg │ ├── apple-touch-icon.png │ ├── blog │ │ ├── blog-1.jpg │ │ ├── blog-2.jpg │ │ ├── blog-3.jpg │ │ ├── blog-4.jpg │ │ ├── blog-author.jpg │ │ ├── blog-inside-post.jpg │ │ ├── blog-recent-1.jpg │ │ ├── blog-recent-2.jpg │ │ ├── blog-recent-3.jpg │ │ ├── blog-recent-4.jpg │ │ ├── blog-recent-5.jpg │ │ ├── comments-1.jpg │ │ ├── comments-2.jpg │ │ ├── comments-3.jpg │ │ ├── comments-4.jpg │ │ ├── comments-5.jpg │ │ └── comments-6.jpg │ ├── clients │ │ ├── client-1.png │ │ ├── client-2.png │ │ ├── client-3.png │ │ ├── client-4.png │ │ ├── client-5.png │ │ ├── client-6.png │ │ ├── client-7.png │ │ └── client-8.png │ ├── diamond.png │ ├── favicon.png │ ├── features-2.png │ ├── features-3.png │ ├── features.png │ ├── footer-bg.png │ ├── grass.png │ ├── hero-bg.png │ ├── hero-bg2.png │ ├── hero-img.png │ ├── hero-img.svg │ ├── hero-img2.png │ ├── iron-ore.png │ ├── logo.png │ ├── minecraft.jpg │ ├── netherite.png │ ├── portfolio │ │ ├── portfolio-1.jpg │ │ ├── portfolio-2.jpg │ │ ├── portfolio-3.jpg │ │ ├── portfolio-4.jpg │ │ ├── portfolio-5.jpg │ │ ├── portfolio-6.jpg │ │ ├── portfolio-7.jpg │ │ ├── portfolio-8.jpg │ │ └── portfolio-9.jpg │ ├── pricing-business.png │ ├── pricing-free.png │ ├── pricing-starter.png │ ├── pricing-ultimate.png │ ├── team-shape.svg │ ├── team │ │ ├── team-1.jpg │ │ ├── team-2.jpg │ │ ├── team-3.jpg │ │ └── team-4.jpg │ ├── testimonials │ │ ├── testimonials-1.jpg │ │ ├── testimonials-2.jpg │ │ ├── testimonials-3.jpg │ │ ├── testimonials-4.jpg │ │ └── testimonials-5.jpg │ ├── values-1.png │ ├── values-2.png │ └── values-3.png ├── js │ └── main.js └── vendor │ ├── aos │ ├── aos.css │ └── aos.js │ ├── bootstrap-icons │ ├── bootstrap-icons.css │ ├── bootstrap-icons.json │ ├── fonts │ │ ├── bootstrap-icons.woff │ │ └── bootstrap-icons.woff2 │ └── index.html │ ├── bootstrap │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── glightbox │ ├── css │ │ ├── glightbox.css │ │ └── glightbox.min.css │ └── js │ │ ├── glightbox.js │ │ └── glightbox.min.js │ ├── isotope-layout │ ├── isotope.pkgd.js │ └── isotope.pkgd.min.js │ ├── php-email-form │ └── validate.js │ ├── purecounter │ └── purecounter.js │ ├── remixicon │ ├── remixicon.css │ ├── remixicon.eot │ ├── remixicon.less │ ├── remixicon.svg │ ├── remixicon.symbol.svg │ ├── remixicon.ttf │ ├── remixicon.woff │ └── remixicon.woff2 │ └── swiper │ ├── swiper-bundle.min.css │ └── swiper-bundle.min.js ├── config.json ├── index.js └── package.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/LICENSE -------------------------------------------------------------------------------- /Pages/404.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/Pages/404.ejs -------------------------------------------------------------------------------- /Pages/about.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/Pages/about.ejs -------------------------------------------------------------------------------- /Pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/Pages/index.ejs -------------------------------------------------------------------------------- /Pages/parts/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/Pages/parts/footer.ejs -------------------------------------------------------------------------------- /Pages/parts/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/Pages/parts/header.ejs -------------------------------------------------------------------------------- /Pages/privacy.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/Pages/privacy.ejs -------------------------------------------------------------------------------- /Pages/services.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/Pages/services.ejs -------------------------------------------------------------------------------- /Pages/status.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/Pages/status.ejs -------------------------------------------------------------------------------- /Pages/terms.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/Pages/terms.ejs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/css/404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/css/404.css -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/img/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/about.jpg -------------------------------------------------------------------------------- /assets/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/img/blog/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/blog-1.jpg -------------------------------------------------------------------------------- /assets/img/blog/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/blog-2.jpg -------------------------------------------------------------------------------- /assets/img/blog/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/blog-3.jpg -------------------------------------------------------------------------------- /assets/img/blog/blog-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/blog-4.jpg -------------------------------------------------------------------------------- /assets/img/blog/blog-author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/blog-author.jpg -------------------------------------------------------------------------------- /assets/img/blog/blog-inside-post.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/blog-inside-post.jpg -------------------------------------------------------------------------------- /assets/img/blog/blog-recent-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/blog-recent-1.jpg -------------------------------------------------------------------------------- /assets/img/blog/blog-recent-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/blog-recent-2.jpg -------------------------------------------------------------------------------- /assets/img/blog/blog-recent-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/blog-recent-3.jpg -------------------------------------------------------------------------------- /assets/img/blog/blog-recent-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/blog-recent-4.jpg -------------------------------------------------------------------------------- /assets/img/blog/blog-recent-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/blog-recent-5.jpg -------------------------------------------------------------------------------- /assets/img/blog/comments-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/comments-1.jpg -------------------------------------------------------------------------------- /assets/img/blog/comments-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/comments-2.jpg -------------------------------------------------------------------------------- /assets/img/blog/comments-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/comments-3.jpg -------------------------------------------------------------------------------- /assets/img/blog/comments-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/comments-4.jpg -------------------------------------------------------------------------------- /assets/img/blog/comments-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/comments-5.jpg -------------------------------------------------------------------------------- /assets/img/blog/comments-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/blog/comments-6.jpg -------------------------------------------------------------------------------- /assets/img/clients/client-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/clients/client-1.png -------------------------------------------------------------------------------- /assets/img/clients/client-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/clients/client-2.png -------------------------------------------------------------------------------- /assets/img/clients/client-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/clients/client-3.png -------------------------------------------------------------------------------- /assets/img/clients/client-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/clients/client-4.png -------------------------------------------------------------------------------- /assets/img/clients/client-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/clients/client-5.png -------------------------------------------------------------------------------- /assets/img/clients/client-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/clients/client-6.png -------------------------------------------------------------------------------- /assets/img/clients/client-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/clients/client-7.png -------------------------------------------------------------------------------- /assets/img/clients/client-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/clients/client-8.png -------------------------------------------------------------------------------- /assets/img/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/diamond.png -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/img/features-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/features-2.png -------------------------------------------------------------------------------- /assets/img/features-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/features-3.png -------------------------------------------------------------------------------- /assets/img/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/features.png -------------------------------------------------------------------------------- /assets/img/footer-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/footer-bg.png -------------------------------------------------------------------------------- /assets/img/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/grass.png -------------------------------------------------------------------------------- /assets/img/hero-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/hero-bg.png -------------------------------------------------------------------------------- /assets/img/hero-bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/hero-bg2.png -------------------------------------------------------------------------------- /assets/img/hero-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/hero-img.png -------------------------------------------------------------------------------- /assets/img/hero-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/hero-img.svg -------------------------------------------------------------------------------- /assets/img/hero-img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/hero-img2.png -------------------------------------------------------------------------------- /assets/img/iron-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/iron-ore.png -------------------------------------------------------------------------------- /assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/logo.png -------------------------------------------------------------------------------- /assets/img/minecraft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/minecraft.jpg -------------------------------------------------------------------------------- /assets/img/netherite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/netherite.png -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/portfolio/portfolio-1.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/portfolio/portfolio-2.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/portfolio/portfolio-3.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/portfolio/portfolio-4.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/portfolio/portfolio-5.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/portfolio/portfolio-6.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/portfolio/portfolio-7.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/portfolio/portfolio-8.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/portfolio/portfolio-9.jpg -------------------------------------------------------------------------------- /assets/img/pricing-business.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/pricing-business.png -------------------------------------------------------------------------------- /assets/img/pricing-free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/pricing-free.png -------------------------------------------------------------------------------- /assets/img/pricing-starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/pricing-starter.png -------------------------------------------------------------------------------- /assets/img/pricing-ultimate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/pricing-ultimate.png -------------------------------------------------------------------------------- /assets/img/team-shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/team-shape.svg -------------------------------------------------------------------------------- /assets/img/team/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/team/team-1.jpg -------------------------------------------------------------------------------- /assets/img/team/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/team/team-2.jpg -------------------------------------------------------------------------------- /assets/img/team/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/team/team-3.jpg -------------------------------------------------------------------------------- /assets/img/team/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/team/team-4.jpg -------------------------------------------------------------------------------- /assets/img/testimonials/testimonials-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/testimonials/testimonials-1.jpg -------------------------------------------------------------------------------- /assets/img/testimonials/testimonials-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/testimonials/testimonials-2.jpg -------------------------------------------------------------------------------- /assets/img/testimonials/testimonials-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/testimonials/testimonials-3.jpg -------------------------------------------------------------------------------- /assets/img/testimonials/testimonials-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/testimonials/testimonials-4.jpg -------------------------------------------------------------------------------- /assets/img/testimonials/testimonials-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/testimonials/testimonials-5.jpg -------------------------------------------------------------------------------- /assets/img/values-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/values-1.png -------------------------------------------------------------------------------- /assets/img/values-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/values-2.png -------------------------------------------------------------------------------- /assets/img/values-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/img/values-3.png -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/vendor/aos/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/aos/aos.css -------------------------------------------------------------------------------- /assets/vendor/aos/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/aos/aos.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap-icons/bootstrap-icons.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/bootstrap-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap-icons/bootstrap-icons.json -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap-icons/index.html -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/glightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/glightbox/css/glightbox.css -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/glightbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/glightbox/css/glightbox.min.css -------------------------------------------------------------------------------- /assets/vendor/glightbox/js/glightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/glightbox/js/glightbox.js -------------------------------------------------------------------------------- /assets/vendor/glightbox/js/glightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/glightbox/js/glightbox.min.js -------------------------------------------------------------------------------- /assets/vendor/isotope-layout/isotope.pkgd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/isotope-layout/isotope.pkgd.js -------------------------------------------------------------------------------- /assets/vendor/isotope-layout/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/isotope-layout/isotope.pkgd.min.js -------------------------------------------------------------------------------- /assets/vendor/php-email-form/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/php-email-form/validate.js -------------------------------------------------------------------------------- /assets/vendor/purecounter/purecounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/purecounter/purecounter.js -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/remixicon/remixicon.css -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/remixicon/remixicon.eot -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/remixicon/remixicon.less -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/remixicon/remixicon.svg -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/remixicon/remixicon.symbol.svg -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/remixicon/remixicon.woff -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/remixicon/remixicon.woff2 -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/swiper/swiper-bundle.min.css -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/assets/vendor/swiper/swiper-bundle.min.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wizqdev/Hosting-Website/HEAD/package.json --------------------------------------------------------------------------------