initial commit

This commit is contained in:
2025-11-11 14:55:29 +07:00
commit 7c17aa7843
2490 changed files with 606138 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
"use strict";
// Class definition
var KTLandingPage = function () {
// Private methods
var initTyped = function() {
var typed = new Typed("#kt_landing_hero_text", {
strings: ["The Best Theme Ever", "The Most Trusted Theme", "#1 Selling Theme"],
typeSpeed: 50
});
}
// Public methods
return {
init: function () {
//initTyped();
}
}
}();
// Webpack support
if (typeof module !== 'undefined') {
module.exports = KTLandingPage;
}
// On document ready
KTUtil.onDOMContentLoaded(function() {
KTLandingPage.init();
});