template/public/index.html
Artur Ferreira 24173fe5bb
Some checks are pending
Deploy to Coolify / deploy (push) Waiting to run
Initial Coolify deployment template
2026-06-01 14:00:04 +02:00

64 lines
1.9 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Template</title>
<style>
:root {
color-scheme: dark;
--bg: #0f110c;
--panel: #181b12;
--text: #f8f3df;
--muted: #aaa18b;
--accent: #c8ff2e;
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
background:
linear-gradient(rgba(248, 243, 223, .045) 1px, transparent 1px),
linear-gradient(90deg, rgba(248, 243, 223, .045) 1px, transparent 1px),
radial-gradient(circle at 20% 0%, rgba(200, 255, 46, .18), transparent 30%),
var(--bg);
background-size: 34px 34px, 34px 34px, auto, auto;
color: var(--text);
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
main {
width: min(720px, calc(100vw - 32px));
padding: 36px;
border: 1px solid rgba(248, 243, 223, .14);
border-radius: 8px;
background: rgba(24, 27, 18, .9);
box-shadow: 12px 12px 0 rgba(200, 255, 46, .11);
}
p:first-child {
margin: 0 0 12px;
color: var(--accent);
font-weight: 800;
letter-spacing: .1em;
text-transform: uppercase;
font-size: 12px;
}
h1 {
margin: 0 0 14px;
font-size: clamp(40px, 8vw, 76px);
line-height: .92;
letter-spacing: -.07em;
}
p { color: var(--muted); line-height: 1.6; }
code { color: var(--accent); }
</style>
</head>
<body>
<main>
<p>Forgejo to Coolify</p>
<h1>Deployment template is alive.</h1>
<p>Push to <code>main</code>, let Forgejo Actions call the Coolify Deploy Webhook, and keep the app source in Forgejo.</p>
</main>
</body>
</html>