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 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (53 loc) · 1.97 KB
/
index.html
File metadata and controls
60 lines (53 loc) · 1.97 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
<!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>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=JetBrains+Mono:wght@400;700&display=swap"
rel="stylesheet">
</head>
<body>
<div class="glow-bg">
<div class="glow-blob"></div>
<div class="glow-blob"></div>
<div class="glow-blob"></div>
</div>
<div class="grid-overlay"></div>
<nav>
<div class="nav-container">
<div class="logo">
<span class="logo-icon">🚀</span>
<span class="logo-text">CODEPILOT</span>
</div>
</div>
</nav>
<header class="hero">
<div class="hero-content">
<div class="badge-new fade-up">Annonce officielle</div>
<h1 class="fade-up delay-1">Le projet <span class="gradient-text">CodePilot</span><br>est terminé.</h1>
<p class="fade-up delay-2">
Merci à toutes les personnes qui ont suivi et soutenu l'aventure.<br>
Le développement est désormais terminé.
</p>
</div>
</header>
<script>
document.addEventListener('DOMContentLoaded', () => {
const observerOptions = { threshold: 0.1 };
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, observerOptions);
document.querySelectorAll('.fade-up').forEach(el => observer.observe(el));
});
</script>
</body>
</html>