42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Example App</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
h1 { font-size: 3rem; margin-bottom: 0.5rem; }
|
|
p { font-size: 1.2rem; opacity: 0.9; }
|
|
.deployed {
|
|
margin-top: 2rem;
|
|
padding: 1rem 2rem;
|
|
background: rgba(255,255,255,0.2);
|
|
border-radius: 8px;
|
|
font-size: 0.9rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Example App</h1>
|
|
<p>Erfolgreich deployed via Forgejo Actions!</p>
|
|
<div class="deployed">
|
|
Push auf main → Automatisches Deployment
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|