
<script>
// Redirect after 3 seconds (3000ms)
document.addEventListener(“DOMContentLoaded”, function() {
setTimeout(function() {
window.location.href = “http://localhost/moujawave/home”; // replace with your real homepage slug or full URL
}, 3000); // adjust delay if you want
});
</script>