diff --git a/content/_index.md b/content/_index.md index 8382f90..149a4a0 100644 --- a/content/_index.md +++ b/content/_index.md @@ -20,9 +20,13 @@ Ciao! 👋 const hour = now.getHours(); // If it's Thursday (4) and between 18:00–23:59 - if (day === 4 && hour >= 18 && hour < 24) { + if (day === 5 && hour >= 18 && hour < 24) { img.src = "/hackinpovo-active.jpg"; // <-- special image - } else { + } + else if (day === 4 && hour>=18 && hour < 24){ + img.src = "/content/steve-jobs-bill-gates.avif"; + } + else { img.src = "/hackinpovo.jpg"; // default image } }); diff --git a/content/steve-jobs-bill-gates.avif b/content/steve-jobs-bill-gates.avif new file mode 100644 index 0000000..23ff9ca Binary files /dev/null and b/content/steve-jobs-bill-gates.avif differ