Files
exp/public/index.html
2026-03-13 01:39:57 -07:00

54 lines
1.3 KiB
HTML

<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Random App</title>
<style>
:root {
color-scheme: dark;
}
body {
margin: 0;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
min-height: 100vh;
display: grid;
place-items: center;
background: radial-gradient(circle at top right, #223, #111);
color: #f5f5f5;
}
.card {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 16px;
padding: 2rem;
width: min(90vw, 680px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
h1 {
margin-top: 0;
}
p {
line-height: 1.5;
}
.chip {
display: inline-block;
margin-top: 1rem;
padding: 0.35rem 0.8rem;
border-radius: 999px;
background: #3b82f6;
font-weight: 600;
}
</style>
</head>
<body>
<main class="card">
<h1>🚀 Random App prête pour Coolify</h1>
<p>
Si tu vois cette page, le build Nixpacks et le déploiement fonctionnent.
</p>
<span class="chip">Node + Express + Nixpacks</span>
</main>
</body>
</html>