File size: 18,941 Bytes
28593ea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Gestion d'Appareils à Distance</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .device-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .feature-icon {
            transition: all 0.3s ease;
        }
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }
    </style>
</head>
<body class="bg-gray-50">
    <!-- Navigation -->
    <nav class="bg-white shadow-lg">
        <div class="max-w-6xl mx-auto px-4">
            <div class="flex justify-between items-center py-4">
                <div class="flex items-center space-x-4">
                    <i class="fas fa-mobile-alt text-blue-600 text-2xl"></i>
                    <span class="font-semibold text-gray-900 text-xl">DeviceManager Pro</span>
                </div>
                <div class="hidden md:flex items-center space-x-8">
                    <a href="#" class="text-blue-600 font-medium">Accueil</a>
                    <a href="#" class="text-gray-600 hover:text-blue-600">Fonctionnalités</a>
                    <a href="#" class="text-gray-600 hover:text-blue-600">Tarifs</a>
                    <a href="#" class="text-gray-600 hover:text-blue-600">Contact</a>
                </div>
                <div>
                    <button class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition">
                        Connexion
                    </button>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="bg-gradient-to-r from-blue-500 to-blue-700 text-white py-20">
        <div class="max-w-6xl mx-auto px-4 text-center">
            <h1 class="text-4xl md:text-5xl font-bold mb-6">Gestion d'Appareils à Distance Sécurisée</h1>
            <p class="text-xl mb-8 max-w-3xl mx-auto">
                Solution légale pour surveiller et gérer les appareils mobiles avec le consentement des utilisateurs.
                Idéal pour les parents et les entreprises.
            </p>
            <div class="flex flex-col sm:flex-row justify-center gap-4">
                <button class="bg-white text-blue-600 px-6 py-3 rounded-lg font-semibold hover:bg-gray-100 transition">
                    Essai Gratuit
                </button>
                <button class="bg-transparent border-2 border-white px-6 py-3 rounded-lg font-semibold hover:bg-white hover:text-blue-600 transition">
                    Voir la Démo
                </button>
            </div>
        </div>
    </section>

    <!-- Features -->
    <section class="py-16 bg-white">
        <div class="max-w-6xl mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12">Fonctionnalités Principales</h2>
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Feature 1 -->
                <div class="feature-card bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition">
                    <div class="feature-icon bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
                        <i class="fas fa-map-marker-alt text-blue-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">Localisation en Temps Réel</h3>
                    <p class="text-gray-600">
                        Suivez la position géographique des appareils avec consentement préalable.
                    </p>
                </div>
                
                <!-- Feature 2 -->
                <div class="feature-card bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition">
                    <div class="feature-icon bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
                        <i class="fas fa-shield-alt text-green-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">Contrôle Parental</h3>
                    <p class="text-gray-600">
                        Limitez l'accès à certains contenus et applications pour protéger vos enfants.
                    </p>
                </div>
                
                <!-- Feature 3 -->
                <div class="feature-card bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition">
                    <div class="feature-icon bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
                        <i class="fas fa-bell text-purple-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">Alertes Personnalisées</h3>
                    <p class="text-gray-600">
                        Recevez des notifications pour des activités spécifiques sur les appareils surveillés.
                    </p>
                </div>
                
                <!-- Feature 4 -->
                <div class="feature-card bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition">
                    <div class="feature-icon bg-yellow-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
                        <i class="fas fa-history text-yellow-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">Historique d'Activité</h3>
                    <p class="text-gray-600">
                        Consultez l'historique des applications utilisées et des sites visités.
                    </p>
                </div>
                
                <!-- Feature 5 -->
                <div class="feature-card bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition">
                    <div class="feature-icon bg-red-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
                        <i class="fas fa-lock text-red-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">Verrouillage à Distance</h3>
                    <p class="text-gray-600">
                        Verrouillez ou effacez les données à distance en cas de perte ou vol.
                    </p>
                </div>
                
                <!-- Feature 6 -->
                <div class="feature-card bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition">
                    <div class="feature-icon bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-4">
                        <i class="fas fa-chart-line text-indigo-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-2">Analytiques d'Utilisation</h3>
                    <p class="text-gray-600">
                        Obtenez des rapports détaillés sur l'utilisation des appareils.
                    </p>
                </div>
            </div>
        </div>
    </section>

    <!-- Devices Section -->
    <section class="py-16 bg-gray-50">
        <div class="max-w-6xl mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12">Vos Appareils Connectés</h2>
            <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
                <!-- Device 1 -->
                <div class="device-card bg-white p-6 rounded-xl shadow-md transition cursor-pointer">
                    <div class="flex items-center mb-4">
                        <div class="bg-blue-100 p-3 rounded-full mr-4">
                            <i class="fas fa-mobile-alt text-blue-600 text-xl"></i>
                        </div>
                        <div>
                            <h3 class="font-semibold">iPhone 13 Pro</h3>
                            <p class="text-gray-500 text-sm">Dernière activité: 2 min</p>
                        </div>
                    </div>
                    <div class="space-y-3">
                        <div class="flex justify-between">
                            <span class="text-gray-600">Batterie:</span>
                            <span class="font-medium">78%</span>
                        </div>
                        <div class="flex justify-between">
                            <span class="text-gray-600">Localisation:</span>
                            <span class="font-medium">Paris, FR</span>
                        </div>
                        <div class="flex justify-between">
                            <span class="text-gray-600">Statut:</span>
                            <span class="text-green-600 font-medium">Actif</span>
                        </div>
                    </div>
                    <div class="mt-4 pt-4 border-t flex justify-between">
                        <button class="text-blue-600 hover:text-blue-800">
                            <i class="fas fa-cog mr-1"></i> Paramètres
                        </button>
                        <button class="text-gray-600 hover:text-gray-800">
                            <i class="fas fa-chart-bar mr-1"></i> Statistiques
                        </button>
                    </div>
                </div>
                
                <!-- Device 2 -->
                <div class="device-card bg-white p-6 rounded-xl shadow-md transition cursor-pointer">
                    <div class="flex items-center mb-4">
                        <div class="bg-green-100 p-3 rounded-full mr-4">
                            <i class="fas fa-tablet-alt text-green-600 text-xl"></i>
                        </div>
                        <div>
                            <h3 class="font-semibold">iPad Pro</h3>
                            <p class="text-gray-500 text-sm">Dernière activité: 15 min</p>
                        </div>
                    </div>
                    <div class="space-y-3">
                        <div class="flex justify-between">
                            <span class="text-gray-600">Batterie:</span>
                            <span class="font-medium">45%</span>
                        </div>
                        <div class="flex justify-between">
                            <span class="text-gray-600">Localisation:</span>
                            <span class="font-medium">Lyon, FR</span>
                        </div>
                        <div class="flex justify-between">
                            <span class="text-gray-600">Statut:</span>
                            <span class="text-yellow-600 font-medium">Inactif</span>
                        </div>
                    </div>
                    <div class="mt-4 pt-4 border-t flex justify-between">
                        <button class="text-blue-600 hover:text-blue-800">
                            <i class="fas fa-cog mr-1"></i> Paramètres
                        </button>
                        <button class="text-gray-600 hover:text-gray-800">
                            <i class="fas fa-chart-bar mr-1"></i> Statistiques
                        </button>
                    </div>
                </div>
                
                <!-- Device 3 -->
                <div class="device-card bg-white p-6 rounded-xl shadow-md transition cursor-pointer">
                    <div class="flex items-center mb-4">
                        <div class="bg-red-100 p-3 rounded-full mr-4">
                            <i class="fab fa-android text-red-600 text-xl"></i>
                        </div>
                        <div>
                            <h3 class="font-semibold">Samsung Galaxy S22</h3>
                            <p class="text-gray-500 text-sm">Dernière activité: 1h</p>
                        </div>
                    </div>
                    <div class="space-y-3">
                        <div class="flex justify-between">
                            <span class="text-gray-600">Batterie:</span>
                            <span class="font-medium">92%</span>
                        </div>
                        <div class="flex justify-between">
                            <span class="text-gray-600">Localisation:</span>
                            <span class="font-medium">Marseille, FR</span>
                        </div>
                        <div class="flex justify-between">
                            <span class="text-gray-600">Statut:</span>
                            <span class="text-green-600 font-medium">Actif</span>
                        </div>
                    </div>
                    <div class="mt-4 pt-4 border-t flex justify-between">
                        <button class="text-blue-600 hover:text-blue-800">
                            <i class="fas fa-cog mr-1"></i> Paramètres
                        </button>
                        <button class="text-gray-600 hover:text-gray-800">
                            <i class="fas fa-chart-bar mr-1"></i> Statistiques
                        </button>
                    </div>
                </div>
            </div>
            
            <div class="text-center mt-10">
                <button class="bg-blue-600 text-white px-6 py-3 rounded-lg font-semibold hover:bg-blue-700 transition flex items-center mx-auto">
                    <i class="fas fa-plus mr-2"></i> Ajouter un Appareil
                </button>
            </div>
        </div>
    </section>

    <!-- Legal Notice -->
    <section class="py-10 bg-white border-t">
        <div class="max-w-6xl mx-auto px-4">
            <div class="bg-yellow-50 border-l-4 border-yellow-400 p-4">
                <div class="flex">
                    <div class="flex-shrink-0">
                        <i class="fas fa-exclamation-triangle text-yellow-400"></i>
                    </div>
                    <div class="ml-3">
                        <p class="text-sm text-yellow-700">
                            <strong>Note légale importante:</strong> Cette application est conçue pour une utilisation légale uniquement. 
                            Toute surveillance d'appareils doit être effectuée avec le consentement explicite du propriétaire de l'appareil. 
                            L'utilisation non autorisée peut être illégale dans votre juridiction.
                        </p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-800 text-white py-12">
        <div class="max-w-6xl mx-auto px-4">
            <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
                <div>
                    <h3 class="text-xl font-semibold mb-4">DeviceManager Pro</h3>
                    <p class="text-gray-400">
                        Solution de gestion d'appareils à distance légale et éthique pour les familles et les entreprises.
                    </p>
                </div>
                <div>
                    <h4 class="font-semibold mb-4">Liens Utiles</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Conditions d'Utilisation</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Politique de Confidentialité</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Support</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-semibold mb-4">Contact</h4>
                    <ul class="space-y-2">
                        <li class="flex items-center text-gray-400"><i class="fas fa-envelope mr-2"></i> contact@devicemanager.com</li>
                        <li class="flex items-center text-gray-400"><i class="fas fa-phone mr-2"></i> +33 1 23 45 67 89</li>
                        <li class="flex items-center text-gray-400"><i class="fas fa-map-marker-alt mr-2"></i> Paris, France</li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-semibold mb-4">Suivez-nous</h4>
                    <div class="flex space-x-4">
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
                    </div>
                </div>
            </div>
            <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
                <p>© 2023 DeviceManager Pro. Tous droits réservés.</p>
            </div>
        </div>
    </footer>

    <script>
        // Simple JavaScript pour démontrer l'interactivité
        document.addEventListener('DOMContentLoaded', function() {
            const deviceCards = document.querySelectorAll('.device-card');
            
            deviceCards.forEach(card => {
                card.addEventListener('click', function() {
                    // Simuler une action lorsqu'on clique sur une carte d'appareil
                    console.log('Appareil sélectionné:', this.querySelector('h3').textContent);
                });
            });
            
            // Animation pour les icônes de fonctionnalités
            const featureIcons = document.querySelectorAll('.feature-icon');
            featureIcons.forEach(icon => {
                icon.addEventListener('mouseenter', function() {
                    this.style.transform = 'rotate(10deg)';
                });
                icon.addEventListener('mouseleave', function() {
                    this.style.transform = 'rotate(0)';
                });
            });
        });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=NZABANO/devicemanager-pro" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>