Dashboard Max body { font-family: Arial, sans-serif; background-color: #000; color: #fff; text-align: center; padding: 50px; } .dashboard-container { max-width: 600px; margin: auto; } .welcome-message { font-size: 24px; font-weight: bold; } .menu { margin-top: 30px; } .menu-item { background: linear-gradient(135deg, #ff7300, #ff9b00); padding: 15px; border-radius: 10px; cursor: pointer; font-size: 20px; font-weight: bold; margin: 10px 0; transition: 0.3s; } .menu-item:hover { background: linear-gradient(135deg, #ff9b00, #ff7300); }
Goede avond

Welkom Max Plasschaert!

function updateGreeting() { const hour = new Date().getHours(); let greeting = "Goede avond"; if (hour < 12) { greeting = "Goedemorgen"; } else if (hour < 18) { greeting = "Goedemiddag"; } document.getElementById("greeting").innerText = greeting; } function goTo(url) { window.location.href = url; } updateGreeting();