This repository was archived by the owner on Feb 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (68 loc) · 1.99 KB
/
index.html
File metadata and controls
75 lines (68 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodePilot - Projet Terminé</title>
<style>
:root {
color-scheme: light dark;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
background: #111;
color: #f2f2f2;
display: grid;
place-items: center;
padding: 24px;
}
.end-page {
width: 100%;
max-width: 760px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 14px;
padding: 36px;
background: rgba(255, 255, 255, 0.03);
}
h1 {
margin: 0 0 16px;
font-size: clamp(1.6rem, 4vw, 2.4rem);
font-weight: 700;
line-height: 1.2;
}
p {
margin: 0 0 12px;
color: #d8d8d8;
line-height: 1.65;
font-size: 1rem;
}
.note {
margin-top: 18px;
padding: 14px 16px;
border-left: 4px solid #f0c14b;
background: rgba(240, 193, 75, 0.1);
color: #ffe39b;
}
.sign {
margin-top: 22px;
color: #bcbcbc;
font-size: 0.92rem;
}
</style>
</head>
<body>
<main class="end-page">
<h1>CodePilot, c'est fini.</h1>
<p>Le projet est terminé et l'application n'est plus maintenue.</p>
<p>Merci a toutes les personnes qui l'ont utilisée, testée et soutenue.</p>
<p>Votre confiance et vos retours ont vraiment compté.</p>
<p class="note">Une version ulterieure peut encore etre installée manuellement, mais ce n'est pas recommandé.</p>
<p class="sign">Merci pour tout.</p>
</main>
</body>
</html>