<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- SEO -->
<title>Kinex Dev</title>
<!-- og meta for facebook, googleplus -->
<meta property="og:title" content="Kinex Dev"/>
<meta property="og:description" content=""/>
<meta property="og:url" content="https://www.kinex.sk"/>
<meta property="og:type" content="website" />
<meta property="og:image" content=""/>
<!-- twitter meta -->
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="Kinex Dev"/>
<meta name="twitter:description" content=""/>
<meta name="twitter:url" content="https://www.kinex.sk"/>
<meta name="twitter:image" content=""/>
<link rel="icon" href="https://www.kinex.sk/wp-content/uploads/2024/12/cropped-Kinex-favicon-32x32.png" sizes="32x32" />
<link rel="icon" href="https://www.kinex.sk/wp-content/uploads/2024/12/cropped-Kinex-favicon-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.kinex.sk/wp-content/uploads/2024/12/cropped-Kinex-favicon-180x180.png" />
<meta name="msapplication-TileImage" content="https://www.kinex.sk/wp-content/uploads/2024/12/cropped-Kinex-favicon-270x270.png" />
<link rel="stylesheet" href="https://www.kinex.sk/wp-content/plugins/cmp-coming-soon-maintenance/themes/hardwork/style.css?v=4.1.15" type="text/css" media="all">
<link rel="stylesheet" href="https://www.kinex.sk/wp-content/plugins/cmp-coming-soon-maintenance/css/animate.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" rel="stylesheet" >
<link href="https://www.kinex.sk/wp-content/plugins/cmp-coming-soon-maintenance/css/lang-switcher.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:400%7CPoppins:400,700,100&subset=devanagari,latin-ext,latin" rel="stylesheet">
<style>
body,input {font-family:'Poppins', 'sans-serif';color:#333333;}
.social-list {background-color: rgba(0,0,0,0.4);}
a {color:#333333;}
h1,h2,h3,h4,h5,h6 {font-family:'Poppins', 'sans-serif';}
body {font-size:17px; letter-spacing: 0px; font-weight:100;; }
h1:not(.text-logo),h2, h3,h4,h5,h6,.text-logo-wrapper {font-size:1.0588235294118em;letter-spacing: 0px; font-weight:400;font-style: normal;; }
h1 {font-weight:400;font-style: normal;;}
</style>
<style>
.wp-video {margin: 0 auto;}
.wp-video-shortcode {max-width: 100%;}
.grecaptcha-badge {display: none!important;}
.text-logo {display: inline-block;}
#gdpr-checkbox {-webkit-appearance: checkbox;-moz-appearance: checkbox;width: initial;height: initial;}
#counter.expired {display: none; }
input, button {
box-shadow: inset 0 0 0 0 !important;
-webkit-box-shadow: inset 0 0 0 0 !important;
-webkit-appearance: none;
outline: none;
}
</style>
</head>
<body id="body">
<div id="background-wrapper">
<div id="background-image" class="color loaded" style="background-color:#ffffff"></div>
</div>
<div class="lang-switch-wrapper">
<div class="lang-switcher flag-1 text-1">
<div class="lang-dropdown">
<a class="lang-dropdown-trigger" href="#">
<img src="https://www.kinex.sk/wp-content/plugins/cmp-coming-soon-maintenance/img/flags/us.svg" alt="English flag" width="36">
English </a>
<ul class="lang-dropdown-menu">
<li class="lang-dropdown-menu-item">
<a href="https://www.kinex.sk/">English</a>
</li>
<li class="lang-dropdown-menu-item">
<a href="https://www.kinex.sk/sk/">Slovenčina</a>
</li>
<li class="lang-dropdown-menu-item">
<a href="https://www.kinex.sk/de/">Deutsch</a>
</li>
<li class="lang-dropdown-menu-item">
<a href="https://www.kinex.sk/zh/">中文 (中国)</a>
</li>
</ul>
</div>
</div>
</div>
<section class="section section-body">
<div class="logo-wrapper image"><a href="https://www.kinex.sk" style="text-decoration:none"><img src="https://www.kinex.sk/wp-content/uploads/2024/11/LOGO_KINEX.svg" class="graphic-logo" alt="logo"></a></div><h2 class="cmp-title animated ">We are preparing new website. Please check back later!</h2>
</section>
<!-- Fade in background image after load -->
<script>
window.addEventListener("load",function(event) {
init();
});
function init(){
var image = document.getElementById('background-image');
var body = document.getElementById('body');
if ( image === null ) {
image = document.getElementById('body');
}
if ( image != null ) {
if ( image.className !== 'image-unsplash') {
image.classList.add('loaded');
body.classList.add('loaded');
}
}
}
</script>
<script>
/* Subscribe form script */
var ajaxWpUrl = 'https://www.kinex.sk/wp-admin/admin-ajax.php';
var {pathname} = new URL(ajaxWpUrl);
var ajaxurl = `${location.protocol}//${location.hostname}${pathname}`;
var security = '861161e275';
var msg = '';
subForm = function( form, resultElement, emailInput, firstnameInput, lastnameInput, token = '' ) {
if ( emailInput.value !== '' ) {
const firstname = firstnameInput === null ? '' : firstnameInput.value;
const lastname = lastnameInput === null ? '' : lastnameInput.value;
fetch( ajaxurl, {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8',
'Access-Control-Allow-Origin': '*',
},
body: `action=niteo_subscribe&ajax=true&form_honeypot=&email=${ encodeURIComponent(emailInput.value) }&firstname=${ encodeURIComponent(firstname) }&lastname=${ encodeURIComponent(lastname) }&security=${ security }&token=${ token }`,
credentials: 'same-origin'
} )
.then( (res) => {
return res.json();
} )
.then( (data) => {
resultElement.innerHTML = data.message; // Display the result inside result element.
form.classList.add('-subscribed');
if (data.status == 1) {
form.classList.remove('-subscribe-failed');
form.classList.add('-subscribe-successful');
emailInput.value = '';
firstnameInput ? firstnameInput.value = '' : null;
lastnameInput ? lastnameInput.value = '' : null;
} else {
form.classList.add('-subscribe-failed');
}
} )
.catch(function(error) { console.log(error.message); });
} else {
resultElement.innerHTML = 'Oops! Email is empty.';
}
}
</script>
<!-- Build by CMP – Coming Soon Maintenance Plugin by NiteoThemes -->
<!-- Visit plugin page https://wordpress.org/plugins/cmp-coming-soon-maintenance/ -->
<!-- More CMP Themes on https://niteothemes.com -->
</body>
</html>
<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1746811763 -->