Add haans/index.html

This commit is contained in:
2026-03-20 14:13:03 +01:00
parent b337872e66
commit 9fc0675b7d

31
haans/index.html Normal file
View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<title>Offline</title>
<style>
body{
font-family: Arial, sans-serif;
background:#111;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
margin:0;
text-align:center;
}
.box{
background:#1c1c1c;
padding:40px;
border-radius:12px;
}
</style>
</head>
<body>
<div class="box">
<h1>Pech.</h1>
<p>De site is momenteel offline.</p>
</div>
</body>
</html>