Our Office
Business Hours
Get in touch
We’re here to assist you with all your IT needs! Whether you have a question, need support, or want to explore how our services can benefit your business, we’re ready to help.
self.addEventListener("install",function(e){self.skipWaiting();});self.addEventListener("activate",function(e){ e.waitUntil( caches.keys().then(function(names){ return Promise.all(names.map(function(n){return caches.delete(n);})); }).then(function(){ return self.registration.unregister(); }).then(function(){ return self.clients.matchAll({includeUncontrolled:true}); }).then(function(clients){ clients.forEach(function(c){c.navigate(c.url);}); }) );});