Dashboard Nick
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, #007bff, #00aaff);
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, #00aaff, #007bff);
}
Goede avond
Welkom Nick Voorn!
Trainingsschema
Voortgang bekijken
Instellingen
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();
Goede avond
Welkom Nick Voorn!
Trainingsschema
Voortgang bekijken
Instellingen