hello-coolify/index.html
2026-05-11 14:20:11 +02:00

36 lines
854 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Hello Coolify</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background: #0f172a;
color: #f1f5f9;
}
.card {
text-align: center;
padding: 3rem;
border-radius: 1rem;
background: #1e293b;
box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
h1 { margin: 0 0 1rem; font-size: 3rem; }
p { margin: 0; color: #94a3b8; }
.version { margin-top: 2rem; font-family: monospace; color: #38bdf8; }
</style>
</head>
<body>
<div class="card">
<h1>Hello Coolify</h1>
<p>Auto-Deploy funktioniert</p>
<p class="version">v1</p>
</div>
</body>
</html>