-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (66 loc) · 3.11 KB
/
Copy pathindex.html
File metadata and controls
72 lines (66 loc) · 3.11 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JetMoney - Votre Avenir Financier</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<div class="logo">
<img src="app-icon.png" alt="JetMoney Logo" class="logo-img">
JetMoney
</div>
<a href="mailto:jetmoney_support@icloud.com" class="btn" style="background:transparent; border:1px solid rgba(255,255,255,0.2); color:white; padding: 10px 20px;">Contact</a>
</header>
<section class="hero">
<div class="hero-graph-container">
<svg class="hero-graph" viewBox="0 0 1440 400" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none">
<path d="M-100,380 C400,390 800,380 1540,100" fill="none" stroke="#00FF9D" stroke-width="4" />
</svg>
</div>
<h1>Ne regardez plus<br>dans le rétroviseur.</h1>
<p class="subtitle">La première application de budget qui projette votre solde réel sur 18 mois. Sans connexion bancaire. 100% Privé.</p>
<a href="https://apps.apple.com/fr/app/jetmoney/id6751732678" class="btn">Télécharger sur l'App Store</a>
<p style="margin-top: 15px; font-size: 14px; opacity: 0.6;">0,99 € à vie. Pas d'abonnement.</p>
</section>
<section class="showcase">
<div class="iphone-mockup side left">
<img src="screen1.png" alt="JetMoney Screenshot 1">
</div>
<div class="iphone-mockup center">
<img src="screen2.png" alt="JetMoney Main Screenshot">
</div>
<div class="iphone-mockup side right">
<img src="screen3.png" alt="JetMoney Screenshot 3">
</div>
</section>
<section class="features">
<div class="glass-card feature-item">
<div class="feature-icon">🔮</div>
<h3>Projection J+1</h3>
<p>Un moteur de calcul unique qui anticipe votre solde au jour le jour. Fini les mauvaises surprises.</p>
</div>
<div class="glass-card feature-item">
<div class="feature-icon">🎯</div>
<h3>Objectifs Rêvés</h3>
<p>Voyage, Tesla, Mac ? Vérifiez instantanément si votre budget permet de réaliser vos rêves.</p>
</div>
<div class="glass-card feature-item">
<div class="feature-icon">🛡️</div>
<h3>Privacy First</h3>
<p>Vos données ne quittent jamais votre iPhone. Aucune connexion bancaire requise.</p>
</div>
</section>
<footer>
<p>© 2026 JetMoney. Fait avec ❤️ pour votre liberté financière.</p>
<br>
<a href="privacy-policy.html">Confidentialité</a>
<a href="terms-of-service.html">Conditions</a>
<a href="support.html">Support</a>
</footer>
</div>
</body>
</html>