Page erreur 500

This commit is contained in:
Colin Maudry
2026-06-26 18:29:04 +02:00
parent 0eb2807630
commit 5e5c5170a7
+126
View File
@@ -0,0 +1,126 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>decp.info — indisponible</title>
<style>
@import url(https://fonts.bunny.net/css?family=fira-code:400|inter:400,600);
:root {
--primary-color: rgb(179, 56, 33);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Inter", sans-serif;
font-weight: 400;
background-color: rgb(255 240 240 / 40%);
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
min-height: 100vh;
display: flex;
flex-direction: column;
}
header {
padding: 20px 24px;
border-bottom: 1px solid #eee;
background: #fff;
}
.logo-wrapper {
display: flex;
align-items: baseline;
gap: 12px;
}
a.logo {
color: black;
text-decoration: none;
}
a.logo h1 {
font-weight: 400;
font-size: 1.5rem;
line-height: 1;
}
a.logo h1 span {
color: var(--primary-color);
}
p.version {
font-family: "Fira Code", monospace;
font-size: 0.85rem;
color: #666;
}
main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 48px 24px;
}
.card {
background: #fff;
border: 1px solid #e5e5e5;
border-radius: 6px;
padding: 40px 48px;
max-width: 520px;
width: 100%;
text-align: center;
}
.card h2 {
font-weight: 600;
font-size: 1.25rem;
color: var(--primary-color);
margin-bottom: 16px;
}
.card p {
color: #444;
line-height: 1.6;
margin-bottom: 10px;
}
.card p:last-child {
margin-bottom: 0;
color: #888;
font-size: 0.9rem;
}
</style>
</head>
<body>
<header>
<div class="logo-wrapper">
<a class="logo" href="/">
<h1>decp<span>.info</span></h1>
</a>
</div>
</header>
<main>
<div class="card">
<h2>Site temporairement indisponible</h2>
<p>
decp.info rencontre actuellement un problème technique. Une alerte m'a
été envoyée et je travaille à rétablir le service.
</p>
<p>
Le site devrait être de nouveau disponible prochainement. Merci de
votre patience.
</p>
<p>Colin Maudry (colin@colmo.tech)</p>
</div>
</main>
</body>
</html>