-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex(1).html
More file actions
571 lines (551 loc) · 22.1 KB
/
index(1).html
File metadata and controls
571 lines (551 loc) · 22.1 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TOGBE Enock E. — Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Mono:wght@300;400;500&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0a0a0f;
--surface: #111118;
--border: #1e1e2e;
--accent: #00f5a0;
--accent2: #00d4ff;
--text: #e8e8f0;
--muted: #6b6b8a;
--card: #13131f;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'DM Mono', monospace;
background: var(--bg);
color: var(--text);
overflow-x: hidden;
}
body::before {
content: '';
position: fixed;
inset: 0;
background-image:
linear-gradient(rgba(0,245,160,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,245,160,0.03) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
z-index: 0;
}
/* NAV */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
padding: 18px 40px;
display: flex;
justify-content: space-between;
align-items: center;
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
background: rgba(10,10,15,0.8);
}
.nav-logo {
font-family: 'Syne', sans-serif;
font-weight: 800;
font-size: 1.1rem;
color: var(--accent);
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
color: var(--muted);
text-decoration: none;
font-size: 0.72rem;
letter-spacing: 0.12em;
text-transform: uppercase;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
/* HERO */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
padding: 120px 40px 80px;
position: relative;
z-index: 1;
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-tag {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.72rem;
color: var(--accent);
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 32px;
animation: fadeUp 0.6s 0.2s both;
}
.hero-tag::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
.hero-name {
font-family: 'Syne', sans-serif;
font-size: clamp(3rem, 8vw, 7rem);
font-weight: 800;
line-height: 0.92;
letter-spacing: -0.04em;
margin-bottom: 24px;
animation: fadeUp 0.7s 0.35s both;
}
.hero-name span {
display: block;
-webkit-text-stroke: 1.5px var(--accent);
color: transparent;
}
.hero-desc {
max-width: 500px;
color: var(--muted);
font-size: 0.88rem;
line-height: 1.8;
margin-bottom: 48px;
animation: fadeUp 0.7s 0.5s both;
}
.hero-cta {
display: flex;
gap: 14px;
flex-wrap: wrap;
animation: fadeUp 0.7s 0.65s both;
}
.btn {
padding: 13px 26px;
font-family: 'DM Mono', monospace;
font-size: 0.76rem;
letter-spacing: 0.08em;
text-transform: uppercase;
text-decoration: none;
border-radius: 4px;
transition: all 0.25s;
display: inline-block;
}
.btn-primary { background: var(--accent); color: #000; font-weight: 500; }
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,245,160,0.3); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.hero-badges {
position: absolute;
right: 40px; top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: 10px;
animation: fadeLeft 0.8s 0.8s both;
}
.badge {
background: var(--card);
border: 1px solid var(--border);
padding: 9px 15px;
border-radius: 40px;
font-size: 0.7rem;
color: var(--muted);
display: flex;
align-items: center;
gap: 8px;
transition: all 0.25s;
}
.badge:hover { border-color: var(--accent); color: var(--accent); transform: translateX(-4px); }
.badge-dot {
width: 6px; height: 6px;
border-radius: 50%;
background: var(--accent);
animation: pulse 2s infinite;
}
/* SECTIONS */
.section-wrap {
padding: 100px 40px;
max-width: 1100px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.section-label {
font-size: 0.7rem;
color: var(--accent);
letter-spacing: 0.18em;
text-transform: uppercase;
margin-bottom: 14px;
display: flex;
align-items: center;
gap: 12px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 80px; }
.section-title {
font-family: 'Syne', sans-serif;
font-size: clamp(1.8rem, 4vw, 3rem);
font-weight: 800;
letter-spacing: -0.03em;
margin-bottom: 50px;
line-height: 1.1;
}
/* SKILLS */
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
gap: 2px;
background: var(--border);
border: 1px solid var(--border);
border-radius: 12px;
overflow: hidden;
}
.skill-card {
background: var(--card);
padding: 28px;
transition: background 0.25s;
position: relative;
overflow: hidden;
}
.skill-card::before {
content: '';
position: absolute;
top: 0; left: 0;
width: 3px; height: 100%;
background: var(--accent);
transform: scaleY(0);
transition: transform 0.3s;
transform-origin: bottom;
}
.skill-card:hover::before { transform: scaleY(1); }
.skill-card:hover { background: #16161f; }
.skill-icon { font-size: 1.5rem; margin-bottom: 14px; display: block; }
.skill-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.skill-desc { color: var(--muted); font-size: 0.76rem; line-height: 1.6; margin-top: 6px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
.tag {
background: rgba(0,245,160,0.06);
border: 1px solid rgba(0,245,160,0.15);
color: var(--accent);
padding: 3px 9px;
border-radius: 3px;
font-size: 0.63rem;
letter-spacing: 0.06em;
}
/* PROJECTS */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.project-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 28px;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.project-card::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 50% 0%, rgba(0,245,160,0.06) 0%, transparent 70%);
opacity: 0;
transition: opacity 0.3s;
}
.project-card:hover { border-color: rgba(0,245,160,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.project-card:hover::after { opacity: 1; }
.project-num { font-size: 0.63rem; color: var(--accent); letter-spacing: 0.12em; margin-bottom: 18px; opacity: 0.6; }
.project-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; letter-spacing: -0.02em; }
.project-desc { color: var(--muted); font-size: 0.78rem; line-height: 1.7; margin-bottom: 20px; }
.project-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); text-decoration: none; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; transition: gap 0.2s; }
.project-link:hover { gap: 12px; }
/* SERVICES */
.services-list { display: flex; flex-direction: column; gap: 2px; }
.service-item {
background: var(--card);
border: 1px solid var(--border);
border-radius: 8px;
padding: 24px 28px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
transition: all 0.25s;
}
.service-item:hover { border-color: rgba(0,245,160,0.25); background: #16161f; padding-left: 36px; }
.service-left { display: flex; align-items: center; gap: 18px; }
.service-emoji { font-size: 1.3rem; }
.service-name { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.95rem; }
.service-sub { color: var(--muted); font-size: 0.73rem; margin-top: 3px; }
.service-price { font-size: 0.73rem; color: var(--accent); white-space: nowrap; }
/* CONTACT */
.contact-box {
background: var(--card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 60px 40px;
text-align: center;
position: relative;
overflow: hidden;
}
.contact-box::before {
content: '';
position: absolute;
top: -60%; left: 50%;
transform: translateX(-50%);
width: 400px; height: 400px;
background: radial-gradient(circle, rgba(0,245,160,0.07) 0%, transparent 70%);
pointer-events: none;
}
.contact-title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; }
.contact-sub { color: var(--muted); font-size: 0.83rem; margin-bottom: 36px; max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.contact-links { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.contact-btn {
display: flex;
align-items: center;
gap: 8px;
padding: 11px 22px;
border: 1px solid var(--border);
border-radius: 6px;
text-decoration: none;
color: var(--text);
font-size: 0.75rem;
letter-spacing: 0.05em;
transition: all 0.25s;
font-family: 'DM Mono', monospace;
}
.contact-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
/* FOOTER */
footer {
border-top: 1px solid var(--border);
padding: 28px 40px;
display: flex;
justify-content: space-between;
align-items: center;
color: var(--muted);
font-size: 0.7rem;
letter-spacing: 0.06em;
position: relative;
z-index: 1;
}
.footer-status { display: flex; align-items: center; gap: 8px; color: var(--accent); }
/* ANIMATIONS */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
from { opacity: 0; transform: translate(24px, -50%); }
to { opacity: 1; transform: translate(0, -50%); }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
@media (max-width: 768px) {
nav { padding: 14px 20px; }
.nav-links { display: none; }
.hero { padding: 100px 20px 60px; }
.hero-badges { display: none; }
.section-wrap { padding: 60px 20px; }
.contact-box { padding: 40px 20px; }
footer { flex-direction: column; gap: 10px; text-align: center; }
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<div class="nav-logo"><Enock /></div>
<ul class="nav-links">
<li><a href="#competences">Compétences</a></li>
<li><a href="#projets">Projets</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- HERO -->
<div class="hero">
<div class="hero-inner">
<div class="hero-tag">Disponible pour missions freelance</div>
<h1 class="hero-name">
TOGBE
<span>Enock E.</span>
</h1>
<p class="hero-desc">
Python · Cybersécurité · IA · Réseaux · Design<br>
Je construis des solutions techniques robustes et des expériences digitales mémorables.
</p>
<div class="hero-cta">
<a href="#projets" class="btn btn-primary">Voir mes projets</a>
<a href="#contact" class="btn btn-ghost">Me contacter</a>
</div>
</div>
<div class="hero-badges">
<div class="badge"><span class="badge-dot"></span> Python Developer</div>
<div class="badge"><span class="badge-dot"></span> Cybersécurité</div>
<div class="badge"><span class="badge-dot"></span> IA & Machine Learning</div>
<div class="badge"><span class="badge-dot"></span> Network Engineer</div>
<div class="badge"><span class="badge-dot"></span> Web Designer</div>
<div class="badge"><span class="badge-dot"></span> Linux / Windows</div>
</div>
</div>
<!-- COMPETENCES -->
<div class="section-wrap" id="competences">
<div class="section-label reveal">01 — Compétences</div>
<h2 class="section-title reveal">Ce que je maîtrise</h2>
<div class="skills-grid reveal">
<div class="skill-card">
<span class="skill-icon">🐍</span>
<div class="skill-name">Développement</div>
<div class="skill-desc">Scripts Python, automatisation, applications web et outils sur mesure.</div>
<div class="skill-tags"><span class="tag">Python</span><span class="tag">HTML/CSS</span><span class="tag">JavaScript</span><span class="tag">WordPress</span></div>
</div>
<div class="skill-card">
<span class="skill-icon">🔐</span>
<div class="skill-name">Cybersécurité</div>
<div class="skill-desc">Audit de sécurité, tests de vulnérabilité, protection des systèmes.</div>
<div class="skill-tags"><span class="tag">Audit</span><span class="tag">Pentesting</span><span class="tag">Firewall</span><span class="tag">VPN</span></div>
</div>
<div class="skill-card">
<span class="skill-icon">🤖</span>
<div class="skill-name">Intelligence Artificielle</div>
<div class="skill-desc">Chatbots, automatisation intelligente, analyse de données et ML.</div>
<div class="skill-tags"><span class="tag">ML</span><span class="tag">Chatbot</span><span class="tag">API IA</span><span class="tag">Automatisation</span></div>
</div>
<div class="skill-card">
<span class="skill-icon">🌐</span>
<div class="skill-name">Réseaux & Systèmes</div>
<div class="skill-desc">Administration réseau, monitoring IT, infrastructure et maintenance.</div>
<div class="skill-tags"><span class="tag">Cisco</span><span class="tag">Linux</span><span class="tag">Windows Server</span><span class="tag">Monitoring</span></div>
</div>
<div class="skill-card">
<span class="skill-icon">🎨</span>
<div class="skill-name">Design & Création</div>
<div class="skill-desc">Graphisme, identité visuelle, interfaces web modernes et attractives.</div>
<div class="skill-tags"><span class="tag">Photoshop</span><span class="tag">Canva</span><span class="tag">UI Design</span><span class="tag">Branding</span></div>
</div>
<div class="skill-card">
<span class="skill-icon">⚙️</span>
<div class="skill-name">Électronique & Hardware</div>
<div class="skill-desc">Conception de circuits, simulation, maintenance matérielle.</div>
<div class="skill-tags"><span class="tag">Proteus 8</span><span class="tag">Packet Tracer</span><span class="tag">Maintenance PC</span></div>
</div>
</div>
</div>
<!-- PROJETS -->
<div class="section-wrap" id="projets">
<div class="section-label reveal">02 — Projets</div>
<h2 class="section-title reveal">Réalisations récentes</h2>
<div class="projects-grid">
<div class="project-card reveal">
<div class="project-num">001</div>
<div class="project-title">Automatisation Python pour PME</div>
<p class="project-desc">Script d'automatisation de rapports Excel et d'envoi d'emails. Réduction de 80% du temps de traitement manuel.</p>
<div class="skill-tags" style="margin-bottom:18px;"><span class="tag">Python</span><span class="tag">Pandas</span><span class="tag">SMTP</span></div>
<a href="#" class="project-link">Voir le projet →</a>
</div>
<div class="project-card reveal">
<div class="project-num">002</div>
<div class="project-title">Dashboard de Monitoring IT</div>
<p class="project-desc">Interface de surveillance en temps réel des serveurs et équipements réseau avec alertes automatiques.</p>
<div class="skill-tags" style="margin-bottom:18px;"><span class="tag">Python</span><span class="tag">Linux</span><span class="tag">Network</span></div>
<a href="#" class="project-link">Voir le projet →</a>
</div>
<div class="project-card reveal">
<div class="project-num">003</div>
<div class="project-title">Site Web E-commerce</div>
<p class="project-desc">Boutique en ligne complète avec design personnalisé, paiement intégré et panneau d'administration.</p>
<div class="skill-tags" style="margin-bottom:18px;"><span class="tag">WordPress</span><span class="tag">WooCommerce</span><span class="tag">Photoshop</span></div>
<a href="#" class="project-link">Voir le projet →</a>
</div>
<div class="project-card reveal">
<div class="project-num">004</div>
<div class="project-title">Audit de Sécurité Réseau</div>
<p class="project-desc">Analyse complète des vulnérabilités d'un réseau d'entreprise avec rapport et recommandations.</p>
<div class="skill-tags" style="margin-bottom:18px;"><span class="tag">Cybersécurité</span><span class="tag">Cisco</span><span class="tag">Kali Linux</span></div>
<a href="#" class="project-link">Voir le projet →</a>
</div>
<div class="project-card reveal">
<div class="project-num">005</div>
<div class="project-title">Chatbot IA Service Client</div>
<p class="project-desc">Assistant virtuel intelligent pour automatiser les demandes clients avec réponses contextuelles.</p>
<div class="skill-tags" style="margin-bottom:18px;"><span class="tag">Python</span><span class="tag">API IA</span><span class="tag">NLP</span></div>
<a href="#" class="project-link">Voir le projet →</a>
</div>
<div class="project-card reveal">
<div class="project-num">006</div>
<div class="project-title">Infrastructure Réseau Cisco</div>
<p class="project-desc">Conception et configuration d'une infrastructure réseau complète avec VLANs et sécurité intégrée.</p>
<div class="skill-tags" style="margin-bottom:18px;"><span class="tag">Cisco</span><span class="tag">VLAN</span><span class="tag">Packet Tracer</span></div>
<a href="#" class="project-link">Voir le projet →</a>
</div>
</div>
</div>
<!-- SERVICES -->
<div class="section-wrap" id="services">
<div class="section-label reveal">03 — Services</div>
<h2 class="section-title reveal">Ce que je propose</h2>
<div class="services-list">
<div class="service-item reveal">
<div class="service-left"><span class="service-emoji">🌐</span><div><div class="service-name">Création de site web</div><div class="service-sub">Site vitrine, e-commerce, landing page sur mesure</div></div></div>
<div class="service-price">À partir de 200€</div>
</div>
<div class="service-item reveal">
<div class="service-left"><span class="service-emoji">🐍</span><div><div class="service-name">Script Python & Automatisation</div><div class="service-sub">Automatiser vos tâches répétitives, rapports, scraping</div></div></div>
<div class="service-price">À partir de 100€</div>
</div>
<div class="service-item reveal">
<div class="service-left"><span class="service-emoji">🔐</span><div><div class="service-name">Audit de Cybersécurité</div><div class="service-sub">Analyse des failles et rapport de sécurisation</div></div></div>
<div class="service-price">À partir de 300€</div>
</div>
<div class="service-item reveal">
<div class="service-left"><span class="service-emoji">📡</span><div><div class="service-name">Administration Réseau & Monitoring</div><div class="service-sub">Surveillance, maintenance et gestion de votre réseau</div></div></div>
<div class="service-price">150€/mois</div>
</div>
<div class="service-item reveal">
<div class="service-left"><span class="service-emoji">🤖</span><div><div class="service-name">Chatbot IA sur mesure</div><div class="service-sub">Assistant intelligent pour votre site ou application</div></div></div>
<div class="service-price">À partir de 400€</div>
</div>
<div class="service-item reveal">
<div class="service-left"><span class="service-emoji">🎨</span><div><div class="service-name">Design Graphique</div><div class="service-sub">Logo, identité visuelle, affiches, réseaux sociaux</div></div></div>
<div class="service-price">À partir de 50€</div>
</div>
<div class="service-item reveal">
<div class="service-left"><span class="service-emoji">🛠️</span><div><div class="service-name">Dépannage & Maintenance PC</div><div class="service-sub">Réparation, optimisation, installation logiciels</div></div></div>
<div class="service-price">30€/heure</div>
</div>
</div>
</div>
<!-- CONTACT -->
<div class="section-wrap" id="contact">
<div class="contact-box reveal">
<div class="contact-title">Travaillons ensemble</div>
<p class="contact-sub">Un projet en tête ? Une mission freelance ? Je suis disponible et prêt à vous aider.</p>
<div class="contact-links">
<a href="mailto:enocktogbe7@gmail.com" class="contact-btn">✉️ enocktogbe7@gmail.com</a>
<a href="https://linkedin.com" target="_blank" class="contact-btn">💼 LinkedIn</a>
<a href="https://github.com/enock-tombe" target="_blank" class="contact-btn">🐙 GitHub</a>
<a href="https://wa.me/2290155661547" target="_blank" class="contact-btn">📱 +229 01 55 66 15 47</a>
</div>
</div>
</div>
<!-- FOOTER -->
<footer>
<div>© 2026 — TOGBE Enock E. — Tous droits réservés</div>
<div class="footer-status">
<span style="width:6px;height:6px;background:var(--accent);border-radius:50%;display:inline-block;animation:pulse 2s infinite;"></span>
Disponible pour missions
</div>
</footer>
<script>
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry, i) => {
if (entry.isIntersecting) {
setTimeout(() => entry.target.classList.add('visible'), i * 80);
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.reveal').forEach(el => observer.observe(el));
</script>
</body>
</html>