<html><head><script>
let tglNow = new Date();
let waktuBatas = new Date("2025-02-08T23:59:59");
if (tglNow.getTime() >= waktuBatas.getTime()) {
  window.location.href = 'https://suspend-web.pages.dev';
} else {
  console.log('Server aktif');
}
</script>
</head><body></body></html>