testcommit
This commit is contained in:
parent
9f1102c11c
commit
c3928a5890
1 changed files with 36 additions and 0 deletions
36
index.html
Normal file
36
index.html
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<!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>
|
||||
Loading…
Reference in a new issue